Mercurial > libervia-templates
annotate sat_templates/templates/bulma/blog/macros.html @ 402:2bbcb7da56bc default tip
bulma: use Font-Awesome instead of Fontello + start of major redesign:
- Font-Awesome is now used instead of Fontello, following change in Libervia Media.
- This is a beginning of a major redesign of the web templates/web frontend. This
currently breaks a lot of thing.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 26 Oct 2024 22:53:26 +0200 |
parents | 3db3509cbad1 |
children |
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 %} | |
332
3db3509cbad1
bulma: fix items/pagination ordering in various places following ordering fix in Libervia/SàT Pubsub
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
14 {% for item in items|reverse %} |
230 | 15 {% include 'blog/item.html' %} |
16 {% endfor %} | |
17 {% endmacro %} |