aboutsummaryrefslogtreecommitdiff
path: root/newspipe/templates/about.html
blob: 973c086efdfb2bfbf6ea762dedf2be35da908be3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{% extends "layout.html" %}
{% block content %}
<div class="container">
    <br />
    <div class="card">
        <div class="card-body">
            <h2>{{ _('About') }}</h2>
            <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>.') }}
            {{ _('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>
            <p><a href="{{ git_url }}">This fork's source</a></p>
        </div>
    </div>
    <br />
    <div class="card">
        <div class="card-body">
            <h2>{{ _('Help') }}</h2>
            <p>{{ _('Contact')}}: <a href="mailto:{{ contact }}">{{ contact }}</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-primary" 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>
</div><!-- /.container -->
{% endblock %}
bgstack15