all repos — website @ 5de7de4e64cb20183ebfe86e16578f4abd62a23e

My website

Port theme to zola template

Alan Pearce
commit

5de7de4e64cb20183ebfe86e16578f4abd62a23e

parent

d996657be5efda94f4a934d5d78c407ba47bf76c

1 file changed, 25 insertions(+), 0 deletions(-)

changed files
A templates/tags/single.html
@@ -0,0 +1,25 @@
+{% extends "base.html" %} + +{% block rss %} + {% set rss_path = "tags/" ~ term.name ~ "/atom.xml" %} + <link rel="alternate" type="application/atom+xml" title="RSS" href="{{ get_url(path=rss_path, trailing_slash=false) | safe }}"> + +{% endblock %} + +{% block title %}{{ taxonomy.name | capitalize }}: {{ term.name }} | {{ config.title }}{% endblock %} + +{% block main %} +<main> + <h1>{{ taxonomy.name | capitalize }}: {{ term.name }}</h1> + <section> + <ul class="h-feed"> + {%- for page in term.pages %} + <li class="h-entry"> + <time class="dt-published" datetime="{{ page.date | date(format="%+") }}">{{ page.date | date(format="%F") }}</time> + <a class="u-url p-name" href="{{ page.permalink | safe }}">{{ page.title }}</a> + </li> + {%- endfor %} + </ul> + </section> +</main> +{% endblock %}