{% 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 role in section.extra.roles %}
{{ role | safe }}
{%- endfor %}
{%- for section in sections %} {% set section_name = macro::get_section_name(section=section) -%} {{ macro::get_section_title(section=section) }} {%- endfor %}