Mercurial > libervia-templates
annotate default/blog/articles.html @ 95:e4ffb56efd4e
blog/articles: if only one item is shown, use it's title or content as page title.
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 19 Jan 2018 18:17:06 +0100 |
parents | 650f3456f80d |
children | 7108731be0b9 |
rev | line source |
---|---|
10
8b5615a1bf3d
articles, input: use new embedding mechanism in articles + new macros to build forms and inputs
Goffi <goffi@goffi.org>
parents:
8
diff
changeset
|
1 {% if not embedded %}{% extends 'base/base.html' %}{% endif %} |
49
f19e9f5e43b0
blog: moved items rendering to a macro + handle new date filter + handle identities
Goffi <goffi@goffi.org>
parents:
43
diff
changeset
|
2 {% set dates_format='relative' %} |
f19e9f5e43b0
blog: moved items rendering to a macro + handle new date filter + handle identities
Goffi <goffi@goffi.org>
parents:
43
diff
changeset
|
3 {% import 'blog/macros.html' as blog with context %} |
0 | 4 |
95
e4ffb56efd4e
blog/articles: if only one item is shown, use it's title or content as page title.
Goffi <goffi@goffi.org>
parents:
93
diff
changeset
|
5 {% block title -%} |
e4ffb56efd4e
blog/articles: if only one item is shown, use it's title or content as page title.
Goffi <goffi@goffi.org>
parents:
93
diff
changeset
|
6 {%- if items|length == 1 -%} |
e4ffb56efd4e
blog/articles: if only one item is shown, use it's title or content as page title.
Goffi <goffi@goffi.org>
parents:
93
diff
changeset
|
7 {{- items[0].title|default(items[0].content, true)|truncate(60, True, '…') + ' - ' + C.APP_NAME -}} |
e4ffb56efd4e
blog/articles: if only one item is shown, use it's title or content as page title.
Goffi <goffi@goffi.org>
parents:
93
diff
changeset
|
8 {%- else -%} |
e4ffb56efd4e
blog/articles: if only one item is shown, use it's title or content as page title.
Goffi <goffi@goffi.org>
parents:
93
diff
changeset
|
9 {{- super() -}} |
e4ffb56efd4e
blog/articles: if only one item is shown, use it's title or content as page title.
Goffi <goffi@goffi.org>
parents:
93
diff
changeset
|
10 {%- endif -%} |
e4ffb56efd4e
blog/articles: if only one item is shown, use it's title or content as page title.
Goffi <goffi@goffi.org>
parents:
93
diff
changeset
|
11 {%- endblock %} |
e4ffb56efd4e
blog/articles: if only one item is shown, use it's title or content as page title.
Goffi <goffi@goffi.org>
parents:
93
diff
changeset
|
12 |
0 | 13 {% block body %} |
14 <div id="blog_items"> | |
49
f19e9f5e43b0
blog: moved items rendering to a macro + handle new date filter + handle identities
Goffi <goffi@goffi.org>
parents:
43
diff
changeset
|
15 {{ blog.show_items(items) }} |
0 | 16 </div> |
93
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
17 <nav class="bottom_links"> |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
18 <ul> |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
19 {% if newer_url is defined %} |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
20 <li class="newer_items"> |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
21 <a href="{{newer_url}}"> |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
22 <img src="{{media_path}}icons/tango/actions/32/go-previous.png"> |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
23 {% trans %}newer articles{% endtrans %} |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
24 </a> |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
25 </li> |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
26 {% endif %} |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
27 {% if older_url is defined %} |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
28 <li class="older_items"> |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
29 <a href="{{older_url}}"> |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
30 <img src="{{media_path}}icons/tango/actions/32/go-next.png"> |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
31 {% trans %}older articles{% endtrans %} |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
32 </a> |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
33 </li> |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
34 {% endif %} |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
35 </ul> |
650f3456f80d
blog/articles: added simple pagination
Goffi <goffi@goffi.org>
parents:
49
diff
changeset
|
36 </nav> |
0 | 37 {% endblock body %} |