Mercurial > libervia-templates
view sat_templates/templates/bulma/list/create.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 | 877f01720036 |
children |
line wrap: on
line source
{% extends 'base/base.html' %} {% import 'components/block.html' as block with context %} {% block body %} {{ icon_defs(*icons_names) }} <section class="section"> <article class="message has-text-centered"> <div class="message-body"> {% trans %} Please select the type of list that you want to create {% endtrans %} </div> </article> <div class="columns"> {% for tpl in lists_templates %} {{ block.icon_item(tpl.icon, tpl.name, tpl.url) }} {% endfor %} </div> </section> {% endblock body %}