about summary refs log tree commit diff stats
path: root/themes/xmin/templates/page.html
diff options
context:
space:
mode:
authorAlan Pearce2023-04-19 14:06:56 +0200
committerAlan Pearce2023-04-19 14:06:56 +0200
commitcea3e75c68070d180311f6dea56c192a7f90c23d (patch)
tree4dcf4b8381f40a213a428831ac7d0beca643c261 /themes/xmin/templates/page.html
parent38b2563500426ad8349d83441be89708b7fac796 (diff)
downloadwebsite-cea3e75c68070d180311f6dea56c192a7f90c23d.tar.lz
website-cea3e75c68070d180311f6dea56c192a7f90c23d.tar.zst
website-cea3e75c68070d180311f6dea56c192a7f90c23d.zip
Switch to bear blog theme
Diffstat (limited to 'themes/xmin/templates/page.html')
-rw-r--r--themes/xmin/templates/page.html28
1 files changed, 0 insertions, 28 deletions
diff --git a/themes/xmin/templates/page.html b/themes/xmin/templates/page.html
deleted file mode 100644
index f32a6fc..0000000
--- a/themes/xmin/templates/page.html
+++ /dev/null
@@ -1,28 +0,0 @@
-{% 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 %}