templates/base.html: use a wrapper maxwidth div for nicer margins in the main content

This commit is contained in:
Peter Williams 2020-04-10 15:22:55 -04:00
Родитель 491ef9867f
Коммит 7310eaf09a
1 изменённых файлов: 12 добавлений и 10 удалений

Просмотреть файл

@ -34,16 +34,18 @@
</div>
</header>
<main class="maxwidth content">
<div class="maxwidth">
<main class="content">
{% block content %}
{% endblock content %}
</main>
<footer class="maxwidth">
<footer>
<p>Copyright {{ now() | date(format="%Y") }} <a href="http://aas.org/">AAS</a>.
HTML generated with <a href="https://www.getzola.org/">Zola</a>.
<a href="{{ config.extra.github_url | safe }}">Source code</a>.
</p>
</footer>
</div>
</body>
</html>