{% extends "base.html" -%} {% block content -%} {% set ext = "" -%} {% if config.default_language != lang -%} {% set ext = "." ~ lang -%} {% endif -%} {% set sections = [] -%} {% for section in config.extra.sections | default(value=[]) -%} {% set_global sections = sections | concat(with=get_section(path=section ~ "/_index" ~ ext ~ ".md")) -%} {% endfor -%}
{%- for lang,tr in config.languages %} {% if config.default_language != lang -%} {% set url = config.base_url ~ "/" ~ lang -%} {% endif -%} {% if not loop.first %}| {% endif -%} {{ tr.translations.flag | default(value=lang) }} {%- endfor %}

{{ macro::format_name(name=config.extra.name) }}

{% if section.extra.roles -%}

{%- for role in section.extra.roles %} {{ role | safe }}
{%- endfor %}

{%- endif %} {% if config.extra.links -%} {%- endif %} {% if sections -%} {%- endif %}
{%- for section in sections %} {{ macro::card(section=section) }} {%- endfor %} {% endblock content %}