mirror of
https://github.com/zaaarf/friendenstein.git
synced 2024-11-14 03:29:23 +01:00
17 lines
446 B
HTML
17 lines
446 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="home">
|
|
{% if config.extra.home_title %}
|
|
<h1>{{ config.extra.home_title }}</h1>
|
|
{% else %}
|
|
<h1>{{ config.title }}</h1>
|
|
{% endif %}
|
|
{% 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 %}
|