diff --git a/templates/404.html b/templates/404.html new file mode 100644 index 0000000..1b965b9 --- /dev/null +++ b/templates/404.html @@ -0,0 +1,6 @@ +{% extends "base.html" %} + +{% block content %} +
lost? you can always return home.
+{% endblock content %} diff --git a/templates/blog-entry.html b/templates/blog-entry.html index 87777fa..45a86cd 100644 --- a/templates/blog-entry.html +++ b/templates/blog-entry.html @@ -4,14 +4,6 @@ {{ page.description }}
- written: {{ page.date }}
-
- authors: {%- for tag in page.taxonomies.authors | sort | unique(case_sensitive=false) %}
- {{ tag }}
- {% endfor -%}
-
- tags: {%- for tag in page.taxonomies.tags | sort | unique(case_sensitive=false) %}
- #{{ tag }}
- {% endfor -%}
-
+ {% include "blog-metadata.html" %} +
{{ page.content | safe }} {% endblock content %} diff --git a/templates/sidebar.html b/templates/sidebar.html index c985861..399a601 100644 --- a/templates/sidebar.html +++ b/templates/sidebar.html @@ -17,7 +17,7 @@