From b2618e9404b84cc62d4becb02436233a0d53b375 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 25 Nov 2015 22:45:43 +0100 Subject: Rfactorization. Just a start... --- web/templates/about.html | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 web/templates/about.html (limited to 'web/templates/about.html') diff --git a/web/templates/about.html b/web/templates/about.html new file mode 100644 index 00000000..bb2b7e58 --- /dev/null +++ b/web/templates/about.html @@ -0,0 +1,28 @@ +{% extends "layout.html" %} +{% block content %} +
+
+

{{ _('About') }}

+

+ {{ _('JARR is a news aggregator platform and can be shared between several users.') }} + {{ _('You can easily install JARR on your server.') }} + {{ _('Alternatively, you can deploy your own copy using this button:') }}

+ https://www.herokucdn.com/deploy/button.png

+

{{ _('This software is under AGPLv3 license. You are welcome to copy, modify or + redistribute the source code + according to the Affero GPL license.') }}

+

{{ _('Found a bug? Report it here.') }}

+
+
+

{{ _('Help') }}

+

{{ _('If you have any problem, contact the administrator.') }}

+

{{ _('The documentation of the RESTful API is here.') }}

+

{{ _('You can subscribe to new feeds with a bookmarklet. Drag the following button to your browser bookmarks.') }}

+ {{ _('Subscribe to this feed using JARR', bookmarklet='javascript:window.location="%s?url="+encodeURIComponent(document.location)' % url_for('feed.bookmarklet', _external=True)) }} +
+
+

{{ _('Donation') }}

+

{{ _('If you wish and if you like JARR, you can donate via bitcoin 1GVmhR9fbBeEh7rP1qNq76jWArDdDQ3otZ. Thank you!') }}

+
+
+{% endblock %} -- cgit