Mercurial > libervia-website
view templates/default/news/news.html @ 13:b8bf3cd79a9a
tempalte: settings to use `bulma` theme as basis
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 23 Apr 2021 11:58:07 +0200 |
parents | 87262027cbf5 |
children |
line wrap: on
line source
{% if not embedded %}{% extends 'base/base.html' %}{% endif %} {% import 'blog/macros.html' as blog with context %} {% import 'input/navigation.html' as navigation with context %} {% import 'input/textbox.html' as textbox with context %} {% block body %} <h1 class="title has-text-centered">{% trans %}Libervia News{% endtrans %}</h1> {% if blog_items['items'] %} <div class="container mt-4"> <nav class="level mb-4"> <div class="level-left"> </div> <div class="level-right"> <div class="level-item"> {{ textbox.search() }} </div> </div> </nav> <div id="blog_items" class="columns"> <div class="column"> {{ blog.show_items(blog_items['items'], expanded=single) }} </div> </div> </div> {% else %} <div class="message mt-4"> <div class="message-body"> {% trans %}No articles found in this blog!{% endtrans %} </div> </div> {% endif %} {{ navigation.prev_next(_("newer articles"), _("older articles")) }} {% endblock body %}