aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/about.html
blob: 0caf20e3216f7381b73b5a0ffa803064eaae1efe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "layout.html" %}
{% block content %}
<div class="container">
    <div class="jumbotron">
        <p>{{ _('pyAggr3g470r is a simple news aggregator you can use everywhere.') }}</p>
        <p>{{ _('This software is under AGPLv3 license. You are welcome to copy, modify or
        redistribute the <a href="https://bitbucket.org/cedricbonhomme/pyaggr3g470r/">source code</a>
        according to the <a href="https://www.gnu.org/licenses/agpl-3.0.html">Affero GPL</a> license.') }}</p>
        <p>{{ _('Find a bug? Report it here.') }}</p>
    </div>
</div><!-- /.container -->
{% endblock %}
bgstack15