friendenstein/templates/index.html
2023-12-22 00:42:32 +01:00

13 lines
335 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="home">
<h1>{{ config.title }}</h1>
{% if config.extra.home_subtitle %}
<p>{{ config.extra.home_subtitle }}</p>
{% elif config.description %}
<p>{{ config.description }}</p>
{% endif %}
{% include "svg.html" %}
</div>
{% endblock content %}