mirror of
https://gitlab.com/keys.openpgp.org/hagrid.git
synced 2025-10-06 00:23:08 +02:00
9 lines
272 B
HTML
9 lines
272 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="about {%- if page %} {{ page.slug }}{%- endif -%}">
|
|
{% include "partials/menu.html" %}
|
|
{% if page %}{{ page.content | safe }}{% elif section %}{{ section.content | safe }}{% endif %}
|
|
</div>
|
|
{% endblock content %}
|