diff options
author | Alan Pearce | 2020-11-15 13:14:37 +0100 |
---|---|---|
committer | Alan Pearce | 2020-11-15 13:15:31 +0100 |
commit | 6385a5f78ce2ad7409811927b10fc2b62e427643 (patch) | |
tree | 557406eaea728d84f82e852ada8fd97199d1a709 /themes/xmin/templates/page.html | |
parent | 78096da0f478a0b11b77f365cedc855e7c680e14 (diff) | |
download | website-6385a5f78ce2ad7409811927b10fc2b62e427643.tar.lz website-6385a5f78ce2ad7409811927b10fc2b62e427643.tar.zst website-6385a5f78ce2ad7409811927b10fc2b62e427643.zip |
Extract theme from templates
Diffstat (limited to 'themes/xmin/templates/page.html')
-rw-r--r-- | themes/xmin/templates/page.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/themes/xmin/templates/page.html b/themes/xmin/templates/page.html new file mode 100644 index 0000000..f32a6fc --- /dev/null +++ b/themes/xmin/templates/page.html @@ -0,0 +1,28 @@ +{% extends "base.html" %} + +{% block title %} +{{- page.title -}} +{% endblock %} + +{% block main %} +<article class="h-entry"> + <header> + <h1><span class="title p-name">{{ page.title }}</span></h1> + <time class="dt-published" datetime="{{ page.date | date(format='%+') }}">{{ page.date | date(format="%F") }}</time> + <p class="terms"> + {%- if page.taxonomies %} + {%- for name, taxon in page.taxonomies %} + {{ name | capitalize }}: + {%- for item in taxon %} + <a class="p-category" href="{{ get_taxonomy_url(kind=name, name=item) }}">{{ item }}</a> + {%- endfor %} + {%- endfor %} + {%- endif %} + </p> + </header> + + <main class="e-content"> + {{ page.content | safe }} + </main> +</article> +{% endblock %} |