{# Allows the DOCTYPE to be set on a page by page basis #} {%- block doctype %}{% endblock -%} {# Allows custom attributes to be added to the tag #} {%- block htmltag -%} {% set lang = h.lang() %} {%- endblock -%} {# Allows custom attributes to be added to the
tag #} {# Add custom meta tags to the page. Call super() to get the default tags such as charset, viewport and generator. Example: {% block meta %} {{ super() }} {% endblock %} #} {%- block meta -%} {% block meta_generator %}{% endblock %} {% block meta_viewport %}{% endblock %} {%- endblock -%} {# Add a custom title to the page by extending the title block. Call super() to get the default page title. Example: {% block title %}My Subtitle - {{ super() }}{% endblock %} #}