aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/about.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-29 07:43:46 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-04-29 07:43:46 +0200
commitc143079a384bbdfcf3a37cbf71db588e8cbe2648 (patch)
tree40f0bfb26d04ec5ba4c969eb17b49df61e3fe492 /src/web/templates/about.html
parentAll preprocessors for the v3 Article Web service are implemented. (diff)
downloadnewspipe-c143079a384bbdfcf3a37cbf71db588e8cbe2648.tar.gz
newspipe-c143079a384bbdfcf3a37cbf71db588e8cbe2648.tar.bz2
newspipe-c143079a384bbdfcf3a37cbf71db588e8cbe2648.zip
Updated links to ReadTheDocs.
Diffstat (limited to 'src/web/templates/about.html')
-rw-r--r--src/web/templates/about.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/web/templates/about.html b/src/web/templates/about.html
index 1b0db5d7..2b203c0c 100644
--- a/src/web/templates/about.html
+++ b/src/web/templates/about.html
@@ -5,18 +5,18 @@
<h1>{{ _('About') }}</h1>
<p>
{{ _('JARR is a news aggregator platform.') }}
- {{ _('You can easily <a href="https://jarr.readthedocs.org/en/latest/deployment.html">install JARR on your server</a>.') }}
+ {{ _('You can easily <a href="https://jarr.readthedocs.io/en/latest/deployment.html">install JARR on your server</a>.') }}
{{ _('Alternatively, you can deploy your own copy using this button:') }}</p>
<a class="reference external image-reference" href="https://heroku.com/deploy?template=https://github.com/JARR/JARR.git"><img alt="https://www.herokucdn.com/deploy/button.png" src="https://www.herokucdn.com/deploy/button.png" /></a></p>
<p>{{ _('This software is under AGPLv3 license. You are welcome to copy, modify or
redistribute the <a href="https://github.com/JARR/JARR">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://github.com/JARR/JARRissues">here</a>.') }}</p>
+ <p>{{ _('Found a bug? Report it <a href="https://github.com/JARR/JARR/issues">here</a>.') }}</p>
</div>
<div class="well">
<h1>{{ _('Help') }}</h1>
<p>{{ _('If you have any problem, <a href="https://wiki.cedricbonhomme.org/contact">contact</a> the administrator.') }}</p>
- <p>{{ _('The documentation of the RESTful API is <a href="https://jarr.readthedocs.org/en/latest/web-services.html">here</a>.') }}</p>
+ <p>{{ _('The documentation of the RESTful API is <a href="https://jarr.readthedocs.io/en/latest/web-services-v3.html">here</a>.') }}</p>
<p>{{ _('You can subscribe to new feeds with a bookmarklet. Drag the following button to your browser bookmarks.') }}</p>
{{ _('<a class="btn btn-default" href="%(bookmarklet)s" rel="bookmark">Subscribe to this feed using JARR</a>', bookmarklet='javascript:window.location="%s?url="+encodeURIComponent(document.location)' % url_for('feed.bookmarklet', _external=True)) }}
</div>
bgstack15