friendenstein/templates/index.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 %}