comparison sat_templates/templates/bulma/blog/articles.html @ 246:1928ba66c194

bulma: replaced custom styles by new spacing helpers
author Goffi <goffi@goffi.org>
date Fri, 19 Jun 2020 17:57:13 +0200
parents 0e69b5843c2f
children 40fccd3b7cf0
comparison
equal deleted inserted replaced
245:10278ba367a2 246:1928ba66c194
19 {%- endif -%} 19 {%- endif -%}
20 {%- endblock title -%} 20 {%- endblock title -%}
21 21
22 {% block body %} 22 {% block body %}
23 {% if items %} 23 {% if items %}
24 <div class="container has-margin-top-1"> 24 <div class="container mt-4">
25 <div id="blog_items" class="columns"> 25 <div id="blog_items" class="columns">
26 <div class="column"> 26 <div class="column">
27 {{ blog.show_items(items, expanded=single) }} 27 {{ blog.show_items(items, expanded=single) }}
28 </div> 28 </div>
29 </div> 29 </div>
30 </div> 30 </div>
31 {% else %} 31 {% else %}
32 <div class="message has-margin-top-1"> 32 <div class="message mt-4">
33 <div class="message-body"> 33 <div class="message-body">
34 {% trans %}No articles found in this blog!{% endtrans %} 34 {% trans %}No articles found in this blog!{% endtrans %}
35 </div> 35 </div>
36 </div> 36 </div>
37 {% endif %} 37 {% endif %}