diff options
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig index 22d00a1e..10dede8a 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig | |||
@@ -77,3 +77,40 @@ | |||
77 | </div> | 77 | </div> |
78 | </nav> | 78 | </nav> |
79 | {% endblock %} | 79 | {% endblock %} |
80 | |||
81 | {% block footer %} | ||
82 | <footer class="page-footer cyan darken-2"> | ||
83 | <div class="container"> | ||
84 | <div class="row"> | ||
85 | <div class="col l6 s12"> | ||
86 | <h5 class="white-text">{% trans %}Take wallabag with you{% endtrans %}</h5> | ||
87 | <p class="grey-text text-lighten-4"> | ||
88 | {% trans %}We are available at{% endtrans %} | ||
89 | <a target="_blank" class="grey-text text-lighten-3" href="https://play.google.com/store/apps/details?id=fr.gaulupeau.apps.InThePoche">android</a> (<a target="_blank" class="grey-text text-lighten-3" href="https://f-droid.org/repository/browse/?fdid=fr.gaulupeau.apps.InThePoche">f-droid</a>) | ||
90 | {% trans %}and{% endtrans %} | ||
91 | <a target="_blank" class="grey-text text-lighten-3" href="https://itunes.apple.com/app/id828331015">iOS</a>.<br> | ||
92 | {% trans %}Install add-ons for{% endtrans %} | ||
93 | <a target="_blank" class="grey-text text-lighten-3" href="https://addons.mozilla.org/ru/firefox/addon/wallabag/">firefox</a> | ||
94 | {% trans %}and{% endtrans %} | ||
95 | <a target="_blank" class="grey-text text-lighten-3" href="https://chrome.google.com/webstore/detail/wallabagit/peehlcgckcnclnjlndmoddifcicdnabm">chrome</a>. | ||
96 | </p> | ||
97 | </div> | ||
98 | <div class="col l4 offset-l2 s12"> | ||
99 | <h5 class="white-text">{% trans %}Social{% endtrans %}</h5> | ||
100 | <ul> | ||
101 | <li><a target="_blank" class="grey-text text-lighten-3" href="https://twitter.com/wallabagapp">twitter</a></li> | ||
102 | <li><a target="_blank" class="grey-text text-lighten-3" href="https://framasphere.org/u/wallabag">diaspora*</a></li> | ||
103 | <li><a target="_blank" class="grey-text text-lighten-3" href="https://plus.google.com/+WallabagOrg/posts">Google+</a></li> | ||
104 | <li><a target="_blank" class="grey-text text-lighten-3" href="https://facebook.com/Wallabag">Facebook</a></li> | ||
105 | </ul> | ||
106 | </div> | ||
107 | </div> | ||
108 | </div> | ||
109 | <div class="footer-copyright"> | ||
110 | <div class="container"> | ||
111 | <p>{% trans %}powered by{% endtrans %} <a target="_blank" href="https://wallabag.org" class="grey-text text-lighten-4">wallabag</a></p> | ||
112 | <a class="grey-text text-lighten-4 right" href="{{ path('about') }}">{% trans %}about{% endtrans %}</a> | ||
113 | </div> | ||
114 | </div> | ||
115 | </footer> | ||
116 | {% endblock %} | ||