Files: a69243673b022c68aae9ed62d69c212758bcce23 / themes / ran / templates / index.html
582 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 loop.index <= 3 or article.slug == AUTHOR_URL -%} |
14 | {{- entry_link(article) -}} |
15 | {%- endif -%} |
16 | {%- endfor -%} |
17 | <li> |
18 | <a href="/{{- ARCHIVES_URL -}}"> |
19 | <h1>{{- ARCHIVES_TITLE -}}</h1> |
20 | </a> |
21 | </li> |
22 | </ul> |
23 | {%- endblock -%} |
24 | {%- block bottomnav -%} |
25 | {%- include "logo.svg" -%} |
26 | {%- endblock -%} |
27 | |
28 |
Built with git-ssb-web