FILTER PRODUCTS BY
All
{% set taxonomy = get_taxonomy(kind="items") %}
{% set items = taxonomy.items %}
{% for item in items %}
{% set path = item.name | slugify %}
{% set fullpath = "/items/" ~ path %}
{{item.name}}
{% endfor %}
{% set section = get_section(path="products/_index.md")%}
FEATURED POSTS
{% for page in section.pages %}
{% if page.extra.isFeatured %}
{{ page.title }}
{% endif %}
{% endfor %}