aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/baggy/about.twig
blob: 7e19a900e483451359023b206790bd0ce683d3b9 (plain) (blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{% extends "layout.twig" %}

{% block title %}{% trans "About" %}{% endblock %}
{% block menu %}
{% include '_menu.twig' %}
{% endblock %}
{% block content %}
    <h2>{% trans "About wallabag" %}</h2>

    <dl>
        <dt>{% trans "Project website" %}</dt>
        <dd><a href="http://www.wallabag.org">http://www.wallabag.org</a></dd>

        <dt>{% trans "Main developer" %}</dt>
        <dd><a href="mailto:nicolas@loeuillet.org">Nicolas Lœuillet</a><a href="http://cdetc.fr">{% trans "website" %}</a></dd>

        <dt>{% trans "Contributors:" %}</dt>
        <dd><a href="https://github.com/wallabag/wallabag/graphs/contributors">{% trans "on Github" %}</a></dd>

        <dt>{% trans "Bug reports" %}</dt>
        <dd><a href="http://support.wallabag.org">{% trans "On our support website" %}</a> {% trans "or" %} <a href="https://github.com/wallabag/wallabag/issues">{% trans "on Github" %}</a></dd>

        <dt>{% trans "License" %}</dt>
        <dd><a href="http://en.wikipedia.org/wiki/MIT_License">MIT</a></dd>

        <dt>{% trans "Version" %}</dt>
        <dd>{{ constant('POCHE') }}</dd>
    </dl>

    <p>{% trans "wallabag is a read-it-later application: you can save a web page by keeping only content. Elements like ads or menus are deleted." %}</p>

    <h2>{% trans "Helping wallabag" %}</h2>

    <p>{% trans "wallabag is free and opensource. You can help us:" %}</p>

    <dl>
        <dt><a href="http://www.wallabag.org">{% trans "via Paypal" %}</a></dt>

        <dt><a href="http://www.wallabag.org">{% trans "via Flattr" %}</a></dt>
    </dl>

    <h2>{% trans "Credits" %}</h2>
    <dl>
        <dt>PHP Readability</dt>
        <dd><a href="https://bitbucket.org/fivefilters/php-readability">https://bitbucket.org/fivefilters/php-readability</a></dd>

        <dt>Full Text RSS</dt>
        <dd><a href="http://code.fivefilters.org/full-text-rss/src">http://code.fivefilters.org/full-text-rss/src</a></dd>

        <dt>logo by Maylis Agniel</dt>
        <dd><a href="https://github.com/wallabag/logo">https://github.com/wallabag/logo</a></dd>

        <dt>icons</dt>
        <dd><a href="http://icomoon.io">http://icomoon.io</a></dd>

        <dt>PHP Simple HTML DOM Parser</dt>
        <dd><a href="http://simplehtmldom.sourceforge.net/">http://simplehtmldom.sourceforge.net/</a></dd>

        <dt>Session</dt>
        <dd><a href="https://github.com/tontof/kriss_feed/blob/master/src/class/Session.php">https://github.com/tontof/kriss_feed/blob/master/src/class/Session.php</a></dd>

        <dt>Twig</dt>
        <dd><a href="http://twig.sensiolabs.org">http://twig.sensiolabs.org</a></dd>

        <dt>Flash messages</dt>
        <dd><a href="https://github.com/plasticbrain/PHP-Flash-Messages">https://github.com/plasticbrain/PHP-Flash-Messages</a></dd>

        <dt>Pagination</dt>
        <dd><a href="https://github.com/daveismyname/pagination">https://github.com/daveismyname/pagination</a></dd>

        <dt>PHPePub</dt>
        <dd><a href="https://github.com/Grandt/PHPePub/">https://github.com/Grandt/PHPePub/</a></dd>
    </dl> 
{% endblock %}