{%- macro make_nav_link(name, id, page, site) %} {% set aria = "" %} {% set class = "nav-link" %} {% if page.id == id %} {% set class = class + " active" %} {% set aria = 'aria-current="page"' %} {% endif %} {{ name }} {%- endmacro %} {%- if page.custom_page_title is defined %} {%- set title = page.custom_page_title|striptags|e %} {%- else %} {%- set title = page.title|striptags|e + " | " + config.site_name|striptags|e %} {%- endif %} {{ title }} {%- if config.favicon is defined %} {%- endif %} {%- block extrahead %}{% endblock %}
{%- block content %}
{%- if page.exclude_h1 is defined and page.exclude_h1 %} {%- else %}

{{ page.title }}

{%- endif %} {{ page.body }}
{%- endblock %}