{%- if section.content %}
{{ section.content | safe }}
{%- endif %}
{#- Featured entries — hand-curated in data/featured.toml. Capped at 10. -#}
{%- set featured = load_data(path="data/featured.toml", required=false) -%}
{%- if featured and featured.entries and featured.entries | length > 0 %}
Featured entries
{%- for entry_path in featured.entries | slice(end=10) %}
{%- set p = get_page(path=entry_path) %}
{{ p.title }}
{%- if p.extra and p.extra.summary %}{{ p.extra.summary }}{% endif %}