mirror of
https://github.com/zaaarf/friendenstein.git
synced 2024-11-14 11:39:22 +01:00
13 lines
335 B
HTML
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 %}
|