{% extends "section.html" %} {% block seo %} {% set title_addition = "" %} {% if config.extra.title_separator %} {% set title_separator = " " ~ config.extra.title_separator ~ " " %} {% else %} {% set title_separator = " | " %} {% endif %} {% set_global section = get_section(path="authors/_index.md") %} {% if section.title and config.title %} {% set title = section.title %} {% set title_addition = title_separator ~ config.title %} {% elif section.title %} {% set title = section.title %} {% else %} {% set title = config.title %} {% endif %} {% if page.description %} {% set description = section.description %} {% else %} {% set description = config.description %} {% endif %} {{ macros_head::seo(title=title, title_addition=title_addition, description=description) }} {% endblock seo %} {% block body %} {% if section.extra.class %} {% set page_class = section.extra.class %} {% else %} {% set page_class = "contributors list" %} {% endif %} {% endblock body %} {% block content %}