aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/web/templates/about.html4
-rw-r--r--src/web/templates/about_more.html2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/web/templates/about.html b/src/web/templates/about.html
index 78a29d44..4cfafb79 100644
--- a/src/web/templates/about.html
+++ b/src/web/templates/about.html
@@ -7,9 +7,9 @@
{{ _('Newspipe is a news aggregator platform.') }}
{{ _('You can easily <a href="https://newspipe.readthedocs.io/en/latest/deployment.html">install Newspipe on your server</a>.') }}
<p>{{ _('This software is under AGPLv3 license. You are welcome to copy, modify or
- redistribute the <a href="https://gitlab.com/newspipe/newspipe">source code</a>
+ 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://gitlab.com/newspipe/newspipe/issues">here</a>.') }}</p>
+ <p>{{ _('Found a bug? Report it <a href="https://todo.sr.ht/~cedric/newspipe">here</a>.') }}</p>
<p><a href="{{ url_for('about_more') }}">{{ _('More information') }}</a> {{ _('about this instance.') }}</p>
</div>
<div class="well">
diff --git a/src/web/templates/about_more.html b/src/web/templates/about_more.html
index 136bd5b0..d4353a15 100644
--- a/src/web/templates/about_more.html
+++ b/src/web/templates/about_more.html
@@ -2,7 +2,7 @@
{% block content %}
<div class="container">
<ul class="list-group">
- <li class="list-group-item">{{ _('Newspipe version') }}: <a href="https://gitlab.com/newspipe/newspipe/tags/{{newspipe_version}}">{{newspipe_version}}</a></li>
+ <li class="list-group-item">{{ _('Newspipe version') }}: <a href="https://git.sr.ht/~cedric/Newspipe/refs/{{newspipe_version}}">{{newspipe_version}}</a></li>
<li class="list-group-item">{{ _('Running on Heroku') }}: {{on_heroku}}</li>
<li class="list-group-item">{{ _('Registration') }}: {{registration}}</li>
<li class="list-group-item">{{ _('Python version') }}: {{python_version}}</li>
bgstack15