{{ section.extra.name }}
{% if section.extra.id %}
@{{ section.extra.id }}
{% endif %}
{% if section.extra.bio %}
{{ section.extra.bio }}
{% endif %}
{% for section in config.extra.sections %}
{{ section.name }}
{% endfor %}
{% for link in section.extra.links %}
{% set icon_path = "icon/" ~ link.icon ~ ".svg" %}
{% set icon = load_data(path=icon_path) %}
{{ icon | safe }}
{% endfor %}
{% if not section.extra.footer and not config.extra.force_theme %}
{% set moon_icon = load_data(path="icon/moon.svg") %}
{% set sun_icon = load_data(path="icon/sun.svg") %}
{% endif %}
{% for post in blog_section.pages | slice(end=section.extra.recent_max) %}
{{ post.title }}
{{ post.date | date(format=section.extra.date_format) }}
{% endfor %}