Mercurial > libervia-templates
annotate sat_templates/templates/bulma/blog/articles.html @ 401:0e454358ca49
bulma: update `bulma` to version `1.0.2`
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 02 Oct 2024 17:23:03 +0200 |
parents | 3db3509cbad1 |
children |
rev | line source |
---|---|
230 | 1 {# blog_page indicate if blog is included in an other page or if it is the main one #} |
2 {% if not embedded %}{% extends 'base/base.html' %}{% set blog_page = True %}{% endif %} | |
247
40fccd3b7cf0
updated code to handle blog items following data structure change in backend/Libervia
Goffi <goffi@goffi.org>
parents:
246
diff
changeset
|
3 {% set single = blog_items['items']|length == 1 %} |
230 | 4 {% set dates_format='relative' if single else 'short' %} |
5 {% import 'components/avatar.html' as avatar with context %} | |
6 {% import 'blog/macros.html' as blog with context %} | |
7 {% import 'input/navigation.html' as navigation with context %} | |
296
fbea1b9a558f
bulma: new search box, used in blog for now
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
8 {% import 'input/textbox.html' as textbox with context %} |
230 | 9 |
10 {%- block title scoped -%} | |
11 {%- if blog_page -%} | |
12 {%- if single -%} | |
247
40fccd3b7cf0
updated code to handle blog items following data structure change in backend/Libervia
Goffi <goffi@goffi.org>
parents:
246
diff
changeset
|
13 {{- blog_items['items'][0].title|default(blog_items['items'][0].content, true)|truncate(60, True, '…') + ' - ' + C.APP_NAME -}} |
230 | 14 {%- else -%} |
15 {{C.APP_NAME}} | |
16 {# {{- super() -}} | |
17 FIXME: super() is failing if blog is embedded (i.e. base/base.html is not its direct parent) | |
18 not sure what's the best way to avoid that, so just using C.APP_NAME for now #} | |
19 {%- endif -%} | |
20 {%- endif -%} | |
21 {%- endblock title -%} | |
22 | |
23 {% block body %} | |
247
40fccd3b7cf0
updated code to handle blog items following data structure change in backend/Libervia
Goffi <goffi@goffi.org>
parents:
246
diff
changeset
|
24 |
40fccd3b7cf0
updated code to handle blog items following data structure change in backend/Libervia
Goffi <goffi@goffi.org>
parents:
246
diff
changeset
|
25 {% if blog_items['items'] %} |
246
1928ba66c194
bulma: replaced custom styles by new spacing helpers
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
26 <div class="container mt-4"> |
296
fbea1b9a558f
bulma: new search box, used in blog for now
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
27 <nav class="level mb-4"> |
fbea1b9a558f
bulma: new search box, used in blog for now
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
28 <div class="level-left"> |
fbea1b9a558f
bulma: new search box, used in blog for now
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
29 </div> |
fbea1b9a558f
bulma: new search box, used in blog for now
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
30 <div class="level-right"> |
fbea1b9a558f
bulma: new search box, used in blog for now
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
31 <div class="level-item"> |
fbea1b9a558f
bulma: new search box, used in blog for now
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
32 {{ textbox.search() }} |
fbea1b9a558f
bulma: new search box, used in blog for now
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
33 </div> |
fbea1b9a558f
bulma: new search box, used in blog for now
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
34 </div> |
fbea1b9a558f
bulma: new search box, used in blog for now
Goffi <goffi@goffi.org>
parents:
247
diff
changeset
|
35 </nav> |
230 | 36 <div id="blog_items" class="columns"> |
37 <div class="column"> | |
247
40fccd3b7cf0
updated code to handle blog items following data structure change in backend/Libervia
Goffi <goffi@goffi.org>
parents:
246
diff
changeset
|
38 {{ blog.show_items(blog_items['items'], expanded=single) }} |
230 | 39 </div> |
40 </div> | |
41 </div> | |
42 {% else %} | |
246
1928ba66c194
bulma: replaced custom styles by new spacing helpers
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
43 <div class="message mt-4"> |
230 | 44 <div class="message-body"> |
45 {% trans %}No articles found in this blog!{% endtrans %} | |
46 </div> | |
47 </div> | |
48 {% endif %} | |
49 | |
332
3db3509cbad1
bulma: fix items/pagination ordering in various places following ordering fix in Libervia/SàT Pubsub
Goffi <goffi@goffi.org>
parents:
296
diff
changeset
|
50 {{ navigation.prev_next(_("older articles"), _("newer articles")) }} |
230 | 51 {% endblock body %} |