2023-07-04 02:37:44 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2023-12-22 00:42:32 +01:00
|
|
|
<div class="home">
|
2023-12-22 02:37:07 +01:00
|
|
|
{% if config.extra.home_title %}
|
|
|
|
<h1>{{ config.extra.home_title }}</h1>
|
|
|
|
{% else %}
|
2023-12-22 00:42:32 +01:00
|
|
|
<h1>{{ config.title }}</h1>
|
2023-12-22 02:37:07 +01:00
|
|
|
{% endif %}
|
2023-12-22 00:42:32 +01:00
|
|
|
{% if config.extra.home_subtitle %}
|
|
|
|
<p>{{ config.extra.home_subtitle }}</p>
|
|
|
|
{% elif config.description %}
|
|
|
|
<p>{{ config.description }}</p>
|
|
|
|
{% endif %}
|
|
|
|
{% include "svg.html" %}
|
|
|
|
</div>
|
2023-07-04 02:37:44 +02:00
|
|
|
{% endblock content %}
|