]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/material/layout.html.twig
Added route to list entries with annotations
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / material / layout.html.twig
CommitLineData
53e12188
AD
1{% extends "WallabagCoreBundle::base.html.twig" %}
2
3{% block css %}
4 {{ parent() }}
64f81bc3 5 {% if not app.debug %}
9ff628ca 6 <link rel="stylesheet" href="{{ asset('wallassets/material.css') }}">
64f81bc3 7 {% endif %}
53e12188
AD
8{% endblock %}
9
10{% block scripts %}
11 {{ parent() }}
9ff628ca 12 <script src="{{ asset('wallassets/material' ~ (app.debug ? '.dev' : '') ~ '.js') }}"></script>
53e12188
AD
13{% endblock %}
14
15{% block header %}
16{% endblock %}
17
a6523cfe
AD
18{% block messages %}
19 {% for flashMessage in app.session.flashbag.get('notice') %}
20 <script>
8e417206 21 Materialize.toast('{{ flashMessage|trans }}', 4000);
a6523cfe
AD
22 </script>
23 {% endfor %}
24{% endblock %}
25
26{% block menu %}
27 <nav class="cyan darken-1">
28 <ul id="slide-out" class="side-nav fixed">
29 {% block logo %}
30 <li class="logo border-bottom">
0d42217e 31 <a title="{{ 'menu.left.back_to_unread'|trans }}" href="{{ path('unread') }}">
e93f3720 32 <img src="{{ asset('wallassets/themes/_global/img/logo-square.svg') }}" alt="wallabag logo" />
a6523cfe
AD
33 </a>
34 </li>
35 {% endblock %}
36
37 {% set currentRoute = app.request.attributes.get('_route') %}
7d9a67de 38 {% set currentRouteFromQueryParams = app.request.query.get('currentRoute') %}
a6523cfe 39
7d9a67de
KD
40 {% set activeRoute = null %}
41 {% if currentRoute == 'all' or currentRouteFromQueryParams == 'all' %}
42 {% set activeRoute = 'all' %}
4b997bc8
NL
43 {% elseif currentRoute == 'with_annotations' or currentRouteFromQueryParams == 'with_annotations' %}
44 {% set activeRoute = 'with_annotations' %}
7d9a67de
KD
45 {% elseif currentRoute == 'archive' or currentRouteFromQueryParams == 'archive' %}
46 {% set activeRoute = 'archive' %}
47 {% elseif currentRoute == 'starred' or currentRouteFromQueryParams == 'starred' %}
48 {% set activeRoute = 'starred' %}
49 {% elseif currentRoute == 'unread' or currentRoute == 'homepage' or currentRouteFromQueryParams == 'unread' %}
50 {% set activeRoute = 'unread' %}
50f35f0d
JB
51 {% elseif currentRoute == 'untagged' %}
52 {% set activeRoute = 'untagged' %}
7d9a67de
KD
53 {% endif %}
54
55 <li class="bold {% if activeRoute == 'unread' %}active{% endif %}">
59ddb9ae 56 <a class="waves-effect" href="{{ path('unread') }}">{{ 'menu.left.unread'|trans }} <span class="numberItems grey-text">{{ count_entries('unread') }}</span></a>
0d42217e 57 </li>
7d9a67de 58 <li class="bold {% if activeRoute == 'starred' %}active{% endif %}">
59ddb9ae 59 <a class="waves-effect" href="{{ path('starred') }}">{{ 'menu.left.starred'|trans }} <span class="numberItems grey-text">{{ count_entries('starred') }}</span></a>
0d42217e 60 </li>
7d9a67de 61 <li class="bold {% if activeRoute == 'archive' %}active{% endif %}">
59ddb9ae 62 <a class="waves-effect" href="{{ path('archive') }}">{{ 'menu.left.archive'|trans }} <span class="numberItems grey-text">{{ count_entries('archive') }}</span></a>
0d42217e 63 </li>
4b997bc8
NL
64 <li class="bold {% if activeRoute == 'with_annotations' %}active{% endif %}">
65 <a class="waves-effect" href="{{ path('with_annotations') }}">{{ 'menu.left.with_annotations'|trans }} <span class="numberItems grey-text">{{ count_entries('with_annotations') }}</span></a>
66 </li>
7d9a67de 67 <li class="bold {% if activeRoute == 'all' %}active{% endif %}">
59ddb9ae 68 <a class="waves-effect" href="{{ path('all') }}">{{ 'menu.left.all_articles'|trans }} <span class="numberItems grey-text">{{ count_entries('all') }}</span></a>
0d42217e
JB
69 </li>
70 <li class="bold border-bottom {% if currentRoute == 'tags' %}active{% endif %}">
429d86f3 71 <a class="waves-effect" href="{{ path('tag') }}">{{ 'menu.left.tags'|trans }} <span class="numberItems grey-text">{{ count_tags() }}</span></a>
0d42217e
JB
72 </li>
73 <li class="bold {% if currentRoute == 'config' %}active{% endif %}">
74 <a class="waves-effect" href="{{ path('config') }}">{{ 'menu.left.config'|trans }}</a>
75 </li>
b8427f22
JB
76 {% if craue_setting('restricted_access') %}
77 <li class="bold {% if currentRoute starts with 'site_credentials_' %}active{% endif %}">
78 <a class="waves-effect" href="{{ path('site_credentials_index') }}">{{ 'menu.left.site_credentials'|trans }}</a>
79 </li>
80 {% endif %}
63e40f2d 81 {% if is_granted('ROLE_SUPER_ADMIN') %}
152fcccd
JB
82 <li class="bold {% if currentRoute starts with 'user_' %}active{% endif %}">
83 <a class="waves-effect" href="{{ path('user_index') }}">{{ 'menu.left.users_management'|trans }}</a>
84 </li>
85
0d42217e
JB
86 <li class="bold border-bottom {% if currentRoute == 'craue_config_settings_modify' %}active{% endif %}">
87 <a class="waves-effect" href="{{ path('craue_config_settings_modify') }}">{{ 'menu.left.internal_settings'|trans }}</a>
88 </li>
63e40f2d 89 {% endif %}
0d42217e
JB
90 <li class="bold {% if currentRoute == 'import' %}active{% endif %}">
91 <a class="waves-effect" href="{{ path('import') }}">{{ 'menu.left.import'|trans }}</a>
92 </li>
93 <li class="bold {% if currentRoute == 'developer' %}active{% endif %}">
94 <a class="waves-effect" href="{{ path('developer') }}">{{ 'menu.left.developer'|trans }}</a>
95 </li>
96 <li class="bold {% if currentRoute == 'howto' %}active{% endif %}">
97 <a class="waves-effect" href="{{ path('howto') }}">{{ 'menu.left.howto'|trans }}</a>
98 </li>
d010bdd4
JB
99 <li class="bold {% if currentRoute == 'quickstart' %}active{% endif %}">
100 <a class="waves-effect" href="{{ path('quickstart') }}">{{ 'menu.left.quickstart'|trans }}</a>
101 </li>
0d42217e 102 <li class="bold">
c5e4293e 103 <a class="waves-effect icon icon-power" href="{{ path('fos_user_security_logout') }}">{{ 'menu.left.logout'|trans }}</a>
0d42217e 104 </li>
a6523cfe 105 </ul>
2831e77c
S
106 <div class="nav-panels">
107 <div class="nav-panel-actions nav-panel-item">
108 <div class="nav-panel-top">
109 <button data-activates="slide-out" class="nav-panel-menu button-collapse"><i class="material-icons">menu</i></button>
110 <h1 class="left action">
111 {% block title %}
112 {% endblock %}
113 </h1>
114 </div>
115 <ul class="input-field nav-panel-buttom">
116 <li class="bold">
117 <a class="waves-effect tooltipped" data-position="bottom" data-delay="50" data-tooltip="{{ 'menu.top.add_new_entry'|trans }}" href="{{ path('new') }}" id="nav-btn-add">
118 <i class="material-icons">add</i>
119 </a>
120 </li>
121 <li>
122 <a class="waves-effect tooltipped" data-position="bottom" data-delay="50" data-tooltip="{{ 'menu.top.search'|trans }}" href="javascript: void(null);" id="nav-btn-search">
123 <i class="material-icons">search</i>
124 </a>
125 </li>
50f35f0d
JB
126 {% if activeRoute %}
127 <li id="button_random">
128 <a class="waves-effect tooltipped js-random-action" data-position="bottom" data-delay="50" data-tooltip="{{ 'menu.top.random_entry'|trans }}" href="{{ path('random_entry', { 'type': activeRoute }) }}">
fe5850d6 129 <i class="material-icons">casino</i>
50f35f0d
JB
130 </a>
131 </li>
132 {% endif %}
2831e77c
S
133 <li id="button_filters">
134 <a class="nav-panel-menu button-collapse-right tooltipped js-filters-action" data-position="bottom" data-delay="50" data-tooltip="{{ 'menu.top.filter_entries'|trans }}" href="#" data-activates="filters">
135 <i class="material-icons">filter_list</i>
136 </a>
137 </li>
138 <li id="button_export">
139 <a class="nav-panel-menu button-collapse-right tooltipped js-export-action" data-position="bottom" data-delay="50" data-tooltip="{{ 'menu.top.export'|trans }}" href="#" data-activates="export">
140 <i class="material-icons">file_download</i>
141 </a>
142 </li>
143 </ul>
053b9568 144 </div>
50f35f0d 145 {{ render(controller("WallabagCoreBundle:Entry:searchForm", {'currentRoute': currentRoute})) }}
2831e77c 146 {{ render(controller("WallabagCoreBundle:Entry:addEntryForm")) }}
a6523cfe
AD
147 </div>
148 </nav>
149{% endblock %}
4e9f656e
NL
150
151{% block footer %}
e77cde45
NL
152 <footer class="page-footer cyan darken-2">
153 <div class="footer-copyright">
154 <div class="container">
1264029c 155 <div class="row">
a6beec1b
S
156 <div class="col m12 l8">
157 <p class="footer-text" title="{{ display_stats() | raw | striptags }}">
1264029c
JB
158 {{ display_stats() }}
159 </p>
160 </div>
d56d416d 161 <div class="col s12 l4">
a6beec1b 162 <p class="footer-text">
a22b8043 163 {{ 'footer.wallabag.powered_by'|trans }} <a target="_blank" rel="noopener" href="https://wallabag.org" class="grey-text text-lighten-4">wallabag</a> –
1264029c
JB
164 <a class="grey-text text-lighten-4" href="{{ path('about') }}">{{ 'footer.wallabag.about'|trans|lower }}</a>
165 </p>
166 </div>
167 </div>
e77cde45
NL
168 </div>
169 </div>
170 </footer>
4e9f656e 171{% endblock %}