Mercurial > libervia-templates
annotate sat_templates/templates/default/components/common.html @ 175:c0e7389005ff
ticket/item: removed "urlize" filter from body, as we now use XHTML
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 27 Feb 2019 08:46:44 +0100 |
parents | 178f55b825b7 |
children | 240bbac435f4 |
rev | line source |
---|---|
166
178f55b825b7
small refactoring/redesign, better BEM integration:
Goffi <goffi@goffi.org>
parents:
164
diff
changeset
|
1 {% import 'components/menu_labels.html' as ml %} |
66 | 2 |
3 {% macro menu(menus, class='') %} | |
4 <nav class="menu {{class}}"> | |
5 <ul> | |
6 {% for name,url in menus %} | |
166
178f55b825b7
small refactoring/redesign, better BEM integration:
Goffi <goffi@goffi.org>
parents:
164
diff
changeset
|
7 <li><a class="menu_item menu_item--{{name}}" {{ {'href': url}|xmlattr }}>{{ml.label[name]}}</a></li> |
66 | 8 {% endfor %} |
9 </ul> | |
10 </nav> | |
11 {% endmacro %} |