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 %} |