{% extends layout_template %} {% block content %} {% block breadcrumbs %} {% if breadcrumbs and breadcrumbs|length > 1 %} {% include "components/breadcrumbs.html" %} {% endif %} {% endblock %}
{% block before_heading %}{% endblock %} {% block heading %}

{{ page.title }}

{% endblock %} {% block subtitle %} {% if page.frontmatter.get('subtitle') %}

{{ page.frontmatter.get('subtitle') }}

{% endif %} {% endblock %} {% block after_heading %} {% set tags = page.frontmatter.get('tags', []) %} {% if page.created or page.modified or tags %}
{% if page.created and page.modified %} Created ยท Updated {% elif page.modified %} {% elif page.created %} Created {% endif %} {% if tags %}
{% for tag in tags %} {% set tag_slug = normalize_tag(tag) %} {% if site.tag_index %} {{ tag.lstrip('#') }} {% else %} {{ tag.lstrip('#') }} {% endif %} {% endfor %}
{% endif %}
{% endif %} {% endblock %} {% block body %}{{ page.html | safe }}{% endblock %} {% block after_body %}{% endblock %}
{% endblock %} {% block right_sidebar %} {% block toc %} {% if toc %} {% include "components/toc.html" %} {% endif %} {% endblock %} {% block backlinks %} {% if backlinks %} {% include "components/backlinks.html" %} {% endif %} {% endblock %} {% endblock %}