about summary refs log tree commit diff stats
path: root/themes/xmin/templates/index.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/index.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/index.html')
-rw-r--r--themes/xmin/templates/index.html36
1 files changed, 0 insertions, 36 deletions
diff --git a/themes/xmin/templates/index.html b/themes/xmin/templates/index.html
deleted file mode 100644
index 23ec4cd..0000000
--- a/themes/xmin/templates/index.html
+++ /dev/null
@@ -1,36 +0,0 @@
-{% extends "base.html" %}
-
-{% block main %}
-<main class="h-card">
-  <h1 class="p-name">{{ config.title }}</h1>
-  {{ section.content | safe }}
-  <section>
-    <h2>Latest Posts</h2>
-    <ul class="h-feed">
-      {%- for page in section.pages | slice(end=3) %}
-        <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.path | safe }}">{{ page.title }}</a>
-        </li>
-      {%- endfor %}
-    </ul>
-  </section>
-  <section>
-    <h2>Elsewhere on the Internet</h2>
-    <ul>
-      {%- for item in config.extra.menu.contact %}
-        <li>
-          {%- if item.url is starting_with("mailto:") %}
-            <a href="{{ item.url | safe }}" class="u-email email" rel="me">{{ item.name }}</a>
-          {%- else %}
-            <a href="{{ item.url | safe }}" class="u-url url" rel="me">{{ item.name }}</a>
-          {%- endif %}
-        </li>
-      {%- endfor %}
-    </ul>
-  </section>
-  <footer>
-    GPG Key: <a href="{{ config.extra.gpg_url | safe }}" rel="u-key pgpkey">{{ config.extra.gpg_fingerprint }}</a>
-  </footer>
-</main>
-{% endblock %}