{{ config.extra.name }}
{% if config.extra.display_id -%}
@{{ config.extra.id }}
{% endif -%}
{{ config.extra.bio }}
{% for section in config.extra.sections %}
{{ section.name }}
{% endfor %}
{% for link in config.extra.links -%}
{% set icon_path = "static/icon/" ~ link.icon ~ ".svg" %}
{% set icon = load_data(path=icon_path) %}
{{ icon | safe }}
{% endfor %}
{% set moon_icon = load_data(path="static/icon/moon.svg") %}
{% set sun_icon = load_data(path="static/icon/sun.svg") %}
{{ category }}
{% for post in posts %}
{{ post.title }}
{{ post.date | date}}
{% endfor %}
{% endfor %}
{% else %}
{% for post in blog_section.pages %}
{{ post.title }}
{{ post.date | date}}
{% endfor %}
{% endif %}