Files: fb012f7e00f1b895de8756242d4e6eb0d5bb028f / themes / ran / templates / index.html
829 bytesRaw
1 | {% extends "base.html" %} |
2 | {%- block topnav -%} |
3 | {%- include "logo.svg" -%} |
4 | {%- endblock -%} |
5 | {%- block pagetitle -%} |
6 | <h1 class="pagetitle"> |
7 | {{- self.title() -}} |
8 | </h1> |
9 | {%- endblock -%} |
10 | {%- block maincontent -%} |
11 | <ul class="biglinks"> |
12 | {%- for article in dates -%} |
13 | {%- if article.slug == AUTHOR_URL |
14 | or article.date | strftime('%Y-%m') >= |
15 | articles[2].date | strftime('%Y-%m') -%} |
16 | {# <!-- Show the bio, |
17 | plus the first 3 entries (0 to 2), |
18 | plus any other entries in the same month |
19 | as the 3rd entry. --> #} |
20 | {{- entry_link(article) -}} |
21 | {%- endif -%} |
22 | {%- endfor -%} |
23 | <li> |
24 | <a href="/{{- ARCHIVES_URL -}}"> |
25 | <strong>{{- ARCHIVES_TITLE -}}</strong> |
26 | </a> |
27 | </li> |
28 | </ul> |
29 | {%- endblock -%} |
30 | {%- block bottomnav -%} |
31 | {%- include "logo.svg" -%} |
32 | {%- endblock -%} |
33 | |
34 |
Built with git-ssb-web