{% block site_nav %}
{% if nav %}
{% endif %}
{% if page.toc %}
{% endif %}
{% endblock %}
{% block content %}
{% if config.edit_uri %}
{% endif %}
{% if not "\x3ch1" in page.content %}
{{ page.title | default(config.site_name, true)}}
{% endif %}
{% if config.extra.version and page.is_homepage%}
Version: {{ config.extra.version }}
{% endif %}
{{ page.content }}
{% block source %}
{% if page.meta.source %}
{{ lang.t("meta.source") }}
{% set path = (page.meta.path | default([""]) | first) %}
{% for file in page.meta.source %}
{{ file }}
{% endfor %}
{% endif %}
{% endblock %}
{% endblock %}
{% block disqus %}
{% if config.extra.disqus and not page.is_homepage %}
{% include "partials/disqus.html" %}
{% endif %}
{% endblock %}