lightspeed/templates/about.html
carpetscheme 379076c2d6 zola!
2020-04-13 21:19:58 +02:00

12 lines
341 B
HTML
Executable file

{% extends "index.html" %}
{% block title %}{{ page.title }} · {{ config.title }}{% endblock title %}
{% block description %}{{ page.description | default(value=config.description) }}{% endblock description %}
{% block content %}
<article>
<h1>{{ page.title }}</h1>
{{ page.content | safe }}
</article>
{% endblock content %}