aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Static/about.html.twig
diff options
context:
space:
mode:
authorAlexandr Danilov <bitbucket@modos189.ru>2015-08-04 17:18:15 +0300
committerAlexandr Danilov <bitbucket@modos189.ru>2015-08-04 17:18:15 +0300
commit53e121881b78bad3475aa92f2f33be231b441c2f (patch)
treea19caa2976c8de5b4c744fc3883e3af112881623 /src/Wallabag/CoreBundle/Resources/views/themes/material/Static/about.html.twig
parent7e63b892f9682e62f6758bb51c6912499f5bd8d1 (diff)
downloadwallabag-53e121881b78bad3475aa92f2f33be231b441c2f.tar.gz
wallabag-53e121881b78bad3475aa92f2f33be231b441c2f.tar.zst
wallabag-53e121881b78bad3475aa92f2f33be231b441c2f.zip
Added Material theme
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Static/about.html.twig')
-rwxr-xr-xsrc/Wallabag/CoreBundle/Resources/views/themes/material/Static/about.html.twig59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Static/about.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Static/about.html.twig
new file mode 100755
index 00000000..af682c1f
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Static/about.html.twig
@@ -0,0 +1,59 @@
1{% extends "WallabagCoreBundle::layout.html.twig" %}
2
3{% block title %}{% trans %}About{% endtrans %}{% endblock %}
4
5{% block content %}
6
7 <div class="row">
8 <div class="col s12">
9 <div class="card-panel">
10
11 <h2>{% trans %}About wallabag{% endtrans %}</h2>
12
13 <dl>
14 <dt>{% trans %}Project website{% endtrans %}</dt>
15 <dd><a href="https://www.wallabag.org">https://www.wallabag.org</a></dd>
16
17 <dt>{% trans %}Main developer{% endtrans %}</dt>
18 <dd><a href="mailto:nicolas@loeuillet.org">Nicolas Lœuillet</a> — <a href="http://cdetc.fr">{% trans %}website{% endtrans %}</a></dd>
19
20 <dt>{% trans %}Contributors ♥:{% endtrans %}</dt>
21 <dd><a href="https://github.com/wallabag/wallabag/graphs/contributors">{% trans %}on Github{% endtrans %}</a></dd>
22
23 <dt>{% trans %}Bug reports{% endtrans %}</dt>
24 <dd><a href="https://support.wallabag.org">{% trans %}On our support website{% endtrans %}</a> {% trans %}or{% endtrans %} <a href="https://github.com/wallabag/wallabag/issues">{% trans %}on Github{% endtrans %}</a></dd>
25
26 <dt>{% trans %}License{% endtrans %}</dt>
27 <dd><a href="http://en.wikipedia.org/wiki/MIT_License">MIT</a></dd>
28
29 <dt>{% trans %}Version{% endtrans %}</dt>
30 <dd>{{ version }}</dd>
31 </dl>
32
33 <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.{% endtrans %}</p>
34
35 <h2>{% trans %}Getting help{% endtrans %}</h2>
36
37 <dl>
38 <dt>{% trans %}Documentation{% endtrans %}</dt>
39 <dd><a href="https://doc.wallabag.org/">Online documentation</a></dd>
40
41 <dt>{% trans %}Support{% endtrans %}</dt>
42 <dd><a href="http://support.wallabag.org/">http://support.wallabag.org/</a></dd>
43 </dl>
44
45 <h2>{% trans %}Helping wallabag{% endtrans %}</h2>
46
47 <p>{% trans %}wallabag is free and opensource. You can help us:{% endtrans %}</p>
48
49 <dl>
50 <dt><a href="{{ paypal_url }}">{% trans %}via Paypal{% endtrans %}</a></dt>
51
52 <dt><a href="{{ flattr_url }}">{% trans %}via Flattr{% endtrans %}</a></dt>
53 </dl>
54
55 </div>
56 </div>
57 </div>
58
59{% endblock %}