diff --git a/templates/blog-page.html b/templates/blog-page.html new file mode 100644 index 0000000..987f262 --- /dev/null +++ b/templates/blog-page.html @@ -0,0 +1,37 @@ +{% extends "base.html" %} + +{% block content %} +

{{ page.title }}

+
+{% if config.extra.author and config.extra.display_author == true %} +
+{% endif %} +
+ +
+ +{% if page.toc and page.extra.toc %} +{% for h1 in page.toc %} + + +{{ page.content | safe }} + +

+{% if page.taxonomies.tags %} +{% for tag in page.taxonomies.tags %} +/{{ tag }}/ +{% endfor %} +{% endif %} +

+{% endblock content %} \ No newline at end of file