Home
How to use
Contribute
UI Components
{% for tag in componentTagsList %}
{% assign isOpened = false %}
{% for component in collections[tag] %}
{% if component.url == page.url %}
{% assign isOpened = true %}
{% endif %}
{% endfor %}
{% for component in collections[tag] %}
{% include "layout-partials/nav-item.html" %}
{% endfor %}
{% endfor %}
{% if collections.uncategorizedComponents.size > 0 %}
{% assign isOtherOpened = false %}
{% for component in collections.uncategorizedComponents %}
{% if component.url == page.url %}
{% assign isOtherOpened = true %}
{% endif %}
{% endfor %}
{% for component in collections.uncategorizedComponents %}
{% include "layout-partials/nav-item.html" %}
{% endfor %}
{% endif %}
Mixins
{% for tag in mixinTagsList %}
{% assign isOpened = false %}
{% for component in collections[tag] %}
{% if component.url == page.url %}
{% assign isOpened = true %}
{% endif %}
{% endfor %}
{% for component in collections[tag] %}
{% include "layout-partials/nav-item.html" %}
{% endfor %}
{% endfor %}
{% if collections.uncategorizedMixins.size > 0 %}
{% assign isOtherOpened = false %}
{% for component in collections.uncategorizedComponents %}
{% if component.url == page.url %}
{% assign isOtherOpened = true %}
{% endif %}
{% endfor %}
{% for component in collections.uncategorizedMixins %}
{% include "layout-partials/nav-item.html" %}
{% endfor %}
{% endif %}
Crud
{% for tag in crudTagsList %}
{% assign isOpened = false %}
{% for component in collections[tag] %}
{% if component.url == page.url %}
{% assign isOpened = true %}
{% endif %}
{% endfor %}
{% assign sortedComponents = collections[tag] | sort: "data.order" %}
{% for component in sortedComponents %}
{% include "layout-partials/nav-item.html" %}
{% endfor %}
{% endfor %}
{% if collections.uncategorizedCrud.size > 0 %}
{% assign isOtherOpened = false %}
{% for component in collections.uncategorizedComponents %}
{% if component.url == page.url %}
{% assign isOtherOpened = true %}
{% endif %}
{% endfor %}
{% for component in collections.uncategorizedCrud %}
{% include "layout-partials/nav-item.html" %}
{% endfor %}
{% endif %}
Icons