You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {% extends "base.html" %}
-
- {% block content %}
-
- <div class="grid lg:grid-cols-[2fr,1fr] gap-4 container">
- <div class="cell-margin text max-w-[65ch] lg:m-16 text-lg lg:text-xl">
- {{ main_text|safe }}
- </div>
-
- <div id="colophon" class="cell-margin text lg:my-16">
- {{ sidebar_text | safe }}
-
- {% if last_updated is defined %}
- <hr>
- Database last updated: {{ last_updated[0:10] }}
- {% endif %}
- </div>
- </div>
-
- {% endblock %}
|