en/templates/about.html

25 lines
785 B
HTML

{% extends "base.html" %}
{% block title %}About{% endblock title %}
{%- block body %}
<h1>About</h1>
{% if graph.meta.config.about_text %}
{{ graph.meta.config.about_text | safe }}
{% else %}
<p>en is a program to create a connected collection of texts.</p>
<p>You define your graph using a plain-text configuration file, en reads this file and generates a website like the one you are browsing right now.</p>
<p>If you'd like to learn more:</p>
<ul>
<li><a href="https://en.jutty.dev">Website</a></li>
<li><a href="https://en.jutty.dev/node/en">More about en</a></li>
<li><a href="https://en.jutty.dev/node/Documentation">Documentation</a></li>
<li><a href="https://codeberg.org/jutty/en">Source code repository</a></li>
</ul>
{% endif %}
{%- endblock body %}