{% 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">
        {{ about_text|safe }}
    </div>

    <div id="colophon" class="cell-margin text lg:my-16">
        {{ colophon_text | safe }}
    </div>
</div>

{% endblock %}