diff options
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/about.html | 14 | ||||
-rw-r--r-- | src/web/templates/emails/new_password.txt | 2 | ||||
-rw-r--r-- | src/web/templates/home.html | 2 | ||||
-rw-r--r-- | src/web/templates/layout.html | 8 | ||||
-rw-r--r-- | src/web/templates/opml.xml | 2 |
5 files changed, 14 insertions, 14 deletions
diff --git a/src/web/templates/about.html b/src/web/templates/about.html index 4d1b1e8b..1d51786e 100644 --- a/src/web/templates/about.html +++ b/src/web/templates/about.html @@ -4,20 +4,20 @@ <div class="well"> <h1>{{ _('About') }}</h1> <p> - {{ _('JARR is a news aggregator platform.') }} - {{ _('You can easily <a href="https://jarr.readthedocs.io/en/latest/deployment.html">install JARR on your server</a>.') }} + {{ _('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>.') }} {{ _('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> + <a class="reference external image-reference" href="https://heroku.com/deploy?template=https://github.com/Newspipe/Newspipe.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> + redistribute the <a href="https://github.com/Newspipe/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://github.com/JARR/JARR/issues">here</a>.') }}</p> + <p>{{ _('Found a bug? Report it <a href="https://github.com/Newspipe/Newspipe/issues">here</a>.') }}</p> </div> <div class="well"> <h1>{{ _('Help') }}</h1> - <p>{{ _('The documentation of the API is <a href="https://jarr.readthedocs.io/en/latest/web-services-v3.html">here</a>.') }}</p> + <p>{{ _('The documentation of the API is <a href="https://newspipe.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)) }} + {{ _('<a class="btn btn-default" href="%(bookmarklet)s" rel="bookmark">Subscribe to this feed using Newspipe</a>', bookmarklet='javascript:window.location="%s?url="+encodeURIComponent(document.location)' % url_for('feed.bookmarklet', _external=True)) }} </div> </div><!-- /.container --> {% endblock %} diff --git a/src/web/templates/emails/new_password.txt b/src/web/templates/emails/new_password.txt index 40bdc207..1a04a36d 100644 --- a/src/web/templates/emails/new_password.txt +++ b/src/web/templates/emails/new_password.txt @@ -3,6 +3,6 @@ Hello {{ user.nickname }}, A new password has been generated at your request: {{ password }} -It is advised to replace it as soon as connected to JARR. +It is advised to replace it as soon as connected to Newspipe. See you, diff --git a/src/web/templates/home.html b/src/web/templates/home.html index 64e8140d..fe68861a 100644 --- a/src/web/templates/home.html +++ b/src/web/templates/home.html @@ -4,6 +4,6 @@ <link href="{{ url_for("static", filename="css/one-page-app.css") }}" rel="stylesheet" media="screen" /> {% endblock %} {% block content %} - <section id="jarrapp" /> + <section id="newspipeapp" /> <script type="text/javascript" src="{% if cdn != '' %}{{ cdn }}bundle.min.js{% else %}{{ url_for('static', filename = 'js/bundle.min.js') }}{% endif %}"></script> {% endblock %} diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html index 804ec5d6..3e44c4eb 100644 --- a/src/web/templates/layout.html +++ b/src/web/templates/layout.html @@ -4,9 +4,9 @@ {% block head %} <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="description" content="JARR is a web-based news aggregator." /> + <meta name="description" content="Newspipe is a web-based news aggregator." /> <meta name="author" content="" /> - <title>JARR{% if head_titles %} - {{ ' - '.join(head_titles) }}{% endif %}</title> + <title>Newspipe{% if head_titles %} - {{ ' - '.join(head_titles) }}{% endif %}</title> <link rel="shortcut icon" href="{{ url_for("static", filename="img/favicon.ico") }}" /> <!-- Bootstrap core CSS --> @@ -19,7 +19,7 @@ </head> <body> {% block menu %} - <nav id="jarrnav" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> + <nav id="newspipenav" class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"> @@ -28,7 +28,7 @@ <span class="icon-bar"></span> <span class="icon-bar"></span> </button> - <a class="navbar-brand" href="{{ url_for("home") }}">JARR</a> + <a class="navbar-brand" href="{{ url_for("home") }}">Newspipe</a> {% if head_titles %} <p class="navbar-text" style="max-height: 20px; overflow: hidden"> {{ " - ".join(head_titles) }} diff --git a/src/web/templates/opml.xml b/src/web/templates/opml.xml index 986ff165..5f65329e 100644 --- a/src/web/templates/opml.xml +++ b/src/web/templates/opml.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" ?> -<!-- OPML generated by JARR on {{ now | datetime }} --> +<!-- OPML generated by Newspipe on {{ now | datetime }} --> <opml version="1.1"> <head> <title>Feeds of {{ user.nickname }}</title> |