{% extends "main.html" %}
{# Overridden to remove a hack which adds a title to the page #}
{% block content %}
{% if page.edit_url %}
{% include ".icons/material/pencil.svg" %}
{% endif %}
{{ page.content }}
{% if page and page.meta %}
{% if page.meta.git_revision_date_localized or
page.meta.revision_date
%}
{% include "partials/source-date.html" %}
{% endif %}
{% endif %}
{% endblock %}