aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--newspipe/templates/about.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/newspipe/templates/about.html b/newspipe/templates/about.html
index 43d8c73d..60100c5b 100644
--- a/newspipe/templates/about.html
+++ b/newspipe/templates/about.html
@@ -4,12 +4,12 @@
<div class="card">
<div class="card-body">
<h2>{{ _('About') }}</h2>
- <p>
- {{ _('Newspipe is a news aggregator platform.') }}
+ <p>{{ _('Newspipe is a news aggregator platform.') }}</p>
<p>{{ _('This software is under AGPLv3 license. You are welcome to copy, modify or
redistribute the <a href="https://git.sr.ht/~cedric/newspipe">source code</a>
according to the <a href="https://www.gnu.org/licenses/agpl-3.0.html">Affero GPL</a> license.') }}</p>
- <p>{{ _('Found a bug? Report it <a href="https://todo.sr.ht/~cedric/newspipe">here</a>.') }}</p>
+ <p>{{ _('Found a bug? Report it <a href="https://todo.sr.ht/~cedric/newspipe">here</a>.') }}
+ {{ _('A documentation is available <a href="https://man.sr.ht/~cedric/newspipe">here</a>.') }}</p>
<p><a href="{{ url_for('about_more') }}">{{ _('More information') }}</a> {{ _('about this instance.') }}</p>
</div>
</div>
bgstack15