{# Storefront building blocks (monograms, badges, chips, feather icons). All styling lives in skin_store.css (splent_feature_skin_store). #} {% set ICON_PATHS = { "search": '', "package": '', "box": '', "layers": '', "check": '', "check-circle": '', "alert-triangle": '', "alert-circle": '', "x-circle": '', "users": '', "external-link": '', "copy": '', "terminal": '', "arrow-right": '', "arrow-left": '', "git-branch": '', "tag": '', "sliders": '', "download": '', "plus": '', "lock": '', "grid": '', "info": '', "zap": '', } %} {% macro icon(name, size=16) -%} {%- endmacro %} {% macro monogram(short, large=false) -%} {%- endmacro %} {% macro archetype_badge(archetype) -%} {%- if archetype %}{{ archetype }}{% endif -%} {%- endmacro %} {% macro version_pill(feature) -%} v{{ feature.project_version or feature.version or "0.0.0" }} {%- endmacro %} {% macro feature_chip(short, external=false) -%} {%- if external -%} {{ short }}{{ _("external") }} {%- else -%} {{ short }} {%- endif -%} {%- endmacro %} {% macro contract_row(label, items) -%} {% if items %}
{{ label }}
{% for item in items %}{{ item }}{% endfor %}
{% endif %} {%- endmacro %}