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