From cea3e75c68070d180311f6dea56c192a7f90c23d Mon Sep 17 00:00:00 2001
From: Alan Pearce
Date: Wed, 19 Apr 2023 14:06:56 +0200
Subject: Switch to bear blog theme
---
templates/index.html | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
create mode 100644 templates/index.html
(limited to 'templates/index.html')
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..10465a4
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,39 @@
+{% extends "base.html" %}
+
+{% block body_attrs %} class="h-card vcard"{% endblock %}
+
+{% block title_class %} p-name fn{% endblock %}
+
+{% block main %}
+
+ {{ section.content | safe }}
+
+
+ Latest Posts
+
+ {%- for page in section.pages | slice(end=3) %}
+ -
+
+ {{ page.title }}
+
+ {%- endfor %}
+
+
+
+ Elsewhere on the Internet
+
+ {%- for item in config.extra.contact_menu %}
+ -
+ {%- if item.url is starting_with("mailto:") %}
+ {{ item.name }}
+ {%- else %}
+ {{ item.name }}
+ {%- endif %}
+
+ {%- endfor %}
+
+
+
+{% endblock %}
--
cgit 1.4.1