{% import "macros.html" as macros %} {% set page_title = page.title | default(value=config.title) %} {% set page_description = page.description | default(value=config.description) %} {% set page_url = page.permalink | default(value=config.base_url) %} {% set page_image_src = page.extra.image_src | default(value=config.extra.meta.preview_image_src) %} {% set page_image_alt = page.extra.image_alt | default(value=config.extra.meta.preview_image_alt) %} {{ page_title }} {% set canonical_url = config.base_url %} {% if page %} {% set canonical_url = page.permalink %} {% elif section %} {% set canonical_url = section.permalink %} {% elif term %} {% set canonical_url = term.permalink %} {% endif %} {# --- START: Add Rich Article Data (if it's a page) --- #} {% if page %} {# Published time in the required ISO 8601 format #} {# Author's name #} {# Loop through all the tags for this page #} {% if page.taxonomies and page.taxonomies.tags %} {% for tag in page.taxonomies.tags %} {% endfor %} {% endif %} {% endif %} {# --- END: Rich Article Data --- #} {# 1. Load our single combined critical CSS file. #} {% set critical_css = load_data(path="static/css/critical.css", required=false) %} {# 2. If it was found, inline it. #} {% if critical_css %} {% endif %} {# 3. Load the full stylesheet asynchronously (this part is the same). #} {# 4. Provide a fallback for browsers without JavaScript. #} {% if page.extra.math %} {% endif %} {% if config.generate_feeds %} {% endif %} {% block header %} {% endblock header %} {% block title %}

{{ config.title }}

{{ config.extra.home_subtitle }}

{{ macros::render_social_icons() }}
{% endblock title %} {% block main %} {% endblock main %}
{% block footer %} {% endblock footer %}
{% if page.extra.math %} {% endif %} {% if config.extra.google_analytics.enable %} {% endif %}