Mercurial > libervia-templates
annotate sat_templates/templates/bulma/blog/macros.html @ 230:0e69b5843c2f
theme: bulma theme first draft:
This theme uses the Bulma CSS framework, Brython to handle the menu on touch devices, and
Sass to customize Bulma. CSS default fallbacks are disabled as Bulma uses its own naming
conventions, and default fallbacks would lead to hard to debug conflicts.
`common.js` has been slightly improved to handle custom classed in `tab_select`
The theme is not complete yet, but it is functional.
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 19 May 2020 00:02:34 +0200 |
parents | |
children | 3db3509cbad1 |
rev | line source |
---|---|
230 | 1 {% import 'input/textbox.html' as textbox with context %} |
2 | |
3 {% macro show_items(items, comment=False, expanded=false, dates_fmt=none) %} | |
4 {# show items and comments items if present after each item, | |
5 then post form if allow_commenting is set | |
6 @param items(BlogItems): items to show | |
7 @param comment(bool): True items are comments | |
8 if False, a div with "main_article" class will be added | |
9 @param expanded(bool): initial state of items | |
10 #} | |
11 {% if dates_format is undefined %} | |
12 {% set dates_format = dates_fmt or 'short' %} | |
13 {% endif %} | |
14 {% for item in items %} | |
15 {% include 'blog/item.html' %} | |
16 {% endfor %} | |
17 {% endmacro %} |