Mercurial > libervia-templates
annotate sat_templates/templates/default/components/block.html @ 178:9e48f7adfc7b
we are in dev version again
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 03 Mar 2019 17:14:54 +0100 |
parents | 4a03d0a6839b |
children | 03c8fd941c0c |
rev | line source |
---|---|
129 | 1 {% macro separator(label, align='center') %} |
2 {# display a bloc separator | |
3 @param label(unicode): label to show | |
4 @param align(unicode): one of "left", "center", "right" | |
5 #} | |
6 <div class="block_separator"> | |
7 {% if align in ('center', 'right') %} | |
8 <div class="block_separator__line"></div> | |
9 {% endif %} | |
10 <div class="block_separator__label"> | |
11 {{label}} | |
12 </div> | |
13 {% if align in ('center', 'left') %} | |
14 <div class="block_separator__line"></div> | |
15 {% endif %} | |
16 </div> | |
17 {% endmacro %} | |
138 | 18 |
19 {% macro disco_icon_grid(disco_entities, icon_name) %} | |
20 {# display discovered entities in a grid | |
21 @param disco_entities: entities which mush have a name and url key or attribute | |
22 @param icon_name: name of a defined icon | |
23 #} | |
24 <ul class="grid grid--center"> | |
25 {% for disco_entity in disco_entities %} | |
26 <li class='grid__item grid__item--medium grid__item--selectable'> | |
27 <a href="{{disco_entity.url}}" class="items_vert--centered"> | |
172
4a03d0a6839b
css (styles): various styles improvments:
Goffi <goffi@goffi.org>
parents:
164
diff
changeset
|
28 {{ icon(icon_name, cls='icon--block icon--medium') }} |
138 | 29 <span>{{ disco_entity.name }}</span> |
30 </a> | |
31 </li> | |
32 {% endfor %} | |
33 </ul> | |
34 {% endmacro %} |