{% extends "main.html" %}
{% block extrahead %}
{% endblock %}
{% block content %}
{% if page.edit_url %}
{% include ".icons/material/pencil.svg" %}
{% endif %}
{% if "tags" in config.plugins %}
{% include "partials/tags.html" %}
{% endif %}
{{ page.content }}
{% if page and page.meta and (
page.meta.git_revision_date_localized or
page.meta.revision_date
) %}
{% include "partials/source-file.html" %}
{% endif %}
{% endblock %}