11 lines
446 B
Twig
11 lines
446 B
Twig
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block title %}Privacy Policy{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1 class="mb-3">Frequently Asked Questions</h1>
|
||
|
<h2 class="mb-3">Is it free?</h2>
|
||
|
<p>Yes, pflänz.li is free to use and its source code is <a href="https://git.thisfro.ch/thisfro/pflaenz.li">publically accessible</a>.</p>
|
||
|
<h2 class="mb-3">Can I help?</h2>
|
||
|
Yes, feel free to contact <a href="mailto:jannis@thisfro.ch">@thisfro</a>!</p>
|
||
|
{% endblock %}
|