diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2014-02-13 19:49:25 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2014-02-13 19:49:25 +0100 |
commit | 5e98c2183ae824ab6a1dd2dc22f8619a0d718977 (patch) | |
tree | 24ab567d403c967a8b33de8750053abeeca0125a /themes/baggy/_menu.twig | |
parent | 38dafee05d52948fba4a06066d7b0343c8e3de9d (diff) | |
parent | 9f3148fec787a51f837549907130e8ec980a0547 (diff) | |
download | wallabag-5e98c2183ae824ab6a1dd2dc22f8619a0d718977.tar.gz wallabag-5e98c2183ae824ab6a1dd2dc22f8619a0d718977.tar.zst wallabag-5e98c2183ae824ab6a1dd2dc22f8619a0d718977.zip |
Merge pull request #450 from wallabag/dev1.5.0
1.5.0
Diffstat (limited to 'themes/baggy/_menu.twig')
-rw-r--r-- | themes/baggy/_menu.twig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/themes/baggy/_menu.twig b/themes/baggy/_menu.twig new file mode 100644 index 00000000..3e7a2cbf --- /dev/null +++ b/themes/baggy/_menu.twig | |||
@@ -0,0 +1,9 @@ | |||
1 | <button id="menu" class="icon icon-menu desktopHide"><span>Menu</span></button> | ||
2 | <ul id="links" class="links"> | ||
3 | <li><a href="./" {% if view == 'home' %}class="current"{% endif %}>{% trans "home" %}</a></li> | ||
4 | <li><a href="./?view=fav" {% if view == 'fav' %}class="current"{% endif %}>{% trans "favorites" %}</a></li> | ||
5 | <li><a href="./?view=archive" {% if view == 'archive' %}class="current"{% endif %}>{% trans "archive" %}</a></li> | ||
6 | <li><a href="./?view=tags" {% if view == 'tags' %}class="current"{% endif %}>{% trans "tags" %}</a></li> | ||
7 | <li><a href="./?view=config" {% if view == 'config' %}class="current"{% endif %}>{% trans "config" %}</a></li> | ||
8 | <li><a class="icon icon-power" href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li> | ||
9 | </ul> \ No newline at end of file | ||