diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-01-08 11:28:46 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-01-08 11:28:46 +0100 |
commit | 5ed8050791ef562ff4351ede3a077ab1e8b0d916 (patch) | |
tree | 8e0a6bb5cc584b0710fb01048dc08bc26189d71e /themes/courgette/_menu.twig | |
parent | 8905191413f20e7fba1d635a06cf5ec2ff86cbb3 (diff) | |
download | wallabag-5ed8050791ef562ff4351ede3a077ab1e8b0d916.tar.gz wallabag-5ed8050791ef562ff4351ede3a077ab1e8b0d916.tar.zst wallabag-5ed8050791ef562ff4351ede3a077ab1e8b0d916.zip |
[add] courgette theme
Diffstat (limited to 'themes/courgette/_menu.twig')
-rwxr-xr-x | themes/courgette/_menu.twig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/themes/courgette/_menu.twig b/themes/courgette/_menu.twig new file mode 100755 index 00000000..85487f73 --- /dev/null +++ b/themes/courgette/_menu.twig | |||
@@ -0,0 +1,9 @@ | |||
1 | <div id="menuContainer"> | ||
2 | <ul id="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=config" {% if view == 'config' %}class="current"{% endif %}>{% trans "config" %}</a></li> | ||
7 | <li><a href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li> | ||
8 | </ul> | ||
9 | </div> \ No newline at end of file | ||