Mercurial > libervia-templates
view 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 |
line wrap: on
line source
{% import 'input/textbox.html' as textbox with context %} {% macro show_items(items, comment=False, expanded=false, dates_fmt=none) %} {# show items and comments items if present after each item, then post form if allow_commenting is set @param items(BlogItems): items to show @param comment(bool): True items are comments if False, a div with "main_article" class will be added @param expanded(bool): initial state of items #} {% if dates_format is undefined %} {% set dates_format = dates_fmt or 'short' %} {% endif %} {% for item in items|reverse %} {% include 'blog/item.html' %} {% endfor %} {% endmacro %}