aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2015-03-08 00:15:10 +0100
committerThomas Citharel <tcit@tcit.fr>2015-03-08 00:15:10 +0100
commite139258bb1039175827c8debce6101ff0c9a5b86 (patch)
tree86878fa8849c62d362516ccd5f191388f697d771
parentc34a8956e1cd07498457f3211898e8de6d794de3 (diff)
downloadwallabag-e139258bb1039175827c8debce6101ff0c9a5b86.tar.gz
wallabag-e139258bb1039175827c8debce6101ff0c9a5b86.tar.zst
wallabag-e139258bb1039175827c8debce6101ff0c9a5b86.zip
added toolbar at the bottom too, let's give it a try
-rwxr-xr-xthemes/baggy/view.twig4
1 files changed, 4 insertions, 0 deletions
diff --git a/themes/baggy/view.twig b/themes/baggy/view.twig
index a6da85d5..12024cdc 100755
--- a/themes/baggy/view.twig
+++ b/themes/baggy/view.twig
@@ -5,6 +5,7 @@
5{% block title %}{{ entry.title|raw }} ({{ entry.url | e | getDomain }}){% endblock %} 5{% block title %}{{ entry.title|raw }} ({{ entry.url | e | getDomain }}){% endblock %}
6{% block content %} 6{% block content %}
7 {% include '_highlight.twig' %} 7 {% include '_highlight.twig' %}
8 {% block toolbar %}
8 <div id="article_toolbar"> 9 <div id="article_toolbar">
9 <ul class="links"> 10 <ul class="links">
10 <li class="topPosF"><a href="#top" title="{% trans "Back to top" %}" class="tool top icon icon-arrow-up-thick"><span>{% trans "Back to top" %}</span></a></li> 11 <li class="topPosF"><a href="#top" title="{% trans "Back to top" %}" class="tool top icon icon-arrow-up-thick"><span>{% trans "Back to top" %}</span></a></li>
@@ -30,6 +31,8 @@
30 {% if navigate.previous %}<li class="rightPosF"><a href="./?view=view&amp;id={{ navigate.previousid|e }}" class="tool icon icon-next"><span>{% trans "Previous Article" %}</span></a></li>{% endif %} 31 {% if navigate.previous %}<li class="rightPosF"><a href="./?view=view&amp;id={{ navigate.previousid|e }}" class="tool icon icon-next"><span>{% trans "Previous Article" %}</span></a></li>{% endif %}
31 </ul> 32 </ul>
32 </div> 33 </div>
34 {% endblock %}
35
33 <div id="article"> 36 <div id="article">
34 <header class="mbm"> 37 <header class="mbm">
35 <h1>{{ entry.title|raw }}</h1> 38 <h1>{{ entry.title|raw }}</h1>
@@ -41,6 +44,7 @@
41 {{ content | raw }} 44 {{ content | raw }}
42 </article> 45 </article>
43 </div> 46 </div>
47 {{ block('toolbar') }}
44 <script src="{{ poche_url }}themes/_global/js/restoreScroll.js"></script> 48 <script src="{{ poche_url }}themes/_global/js/restoreScroll.js"></script>
45 <script type="text/javascript"> 49 <script type="text/javascript">
46 $(document).ready(function() { 50 $(document).ready(function() {