diff --git a/content/static/style.css b/content/static/style.css
index 7a3a178..d900bda 100644
--- a/content/static/style.css
+++ b/content/static/style.css
@@ -31,6 +31,18 @@ header {
text-transform: lowercase;
}
+.post-nav {
+ font-family: monospace;
+}
+
+.post-nav .symbol {
+ color: var(--main-bullet-color);
+}
+
+.post-nav a {
+ margin: 0 2px;
+}
+
.site-logo {
color: inherit;
font-weight: bold;
diff --git a/templates/base.html b/templates/base.html
deleted file mode 100644
index 50fc86a..0000000
--- a/templates/base.html
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
- {{ metadata.title }}
-
-
-
-
-
-
-
-
-
- {% if header %}
-
- {% endif %}
- {% block content %}{% endblock %}
- {% if footer %}
-
- {% endif %}
-
-
-
-
diff --git a/templates/basic.html b/templates/basic.html
deleted file mode 100644
index c21527d..0000000
--- a/templates/basic.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
-{% if metadata.show_title %}
-{% include "title.html" %}
-{% endif %}
-{{ content | safe }}
-{% endblock %}
-
diff --git a/templates/page.html b/templates/page.html
deleted file mode 100644
index 70513a7..0000000
--- a/templates/page.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{% extends "base.html" %} {% block content %}
-
-{% if metadata.show_title %}
-{% include "title.html" %}
-{% if metadata.date %}
-
-
-
-{% endif %}
-
-{% endif %}
-
-{{ content | safe }}
-{% endblock %}
-
-
diff --git a/templates/post_list.html b/templates/post_list.html
deleted file mode 100644
index 4da52b7..0000000
--- a/templates/post_list.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{% extends "base.html" %} {% block content %}
-
-{% if metadata.show_title %}
-{% include "title.html" %}
-{% endif %}
-
-{{ content | safe }}
-
-{% if post_list %}
-
-{% endif %} {% endblock %}
diff --git a/templates/title.html b/templates/title.html
deleted file mode 100644
index 59c4f6e..0000000
--- a/templates/title.html
+++ /dev/null
@@ -1 +0,0 @@
-{{ metadata.title }}