From 381e40f2b9c87b6a9359f2c79cf4687064625288 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 30 Aug 2017 21:04:39 -0700 Subject: bootstrap 3 + pelican template repo --- theme/templates/article.html | 48 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 theme/templates/article.html (limited to 'theme/templates/article.html') diff --git a/theme/templates/article.html b/theme/templates/article.html new file mode 100644 index 0000000..dd17efd --- /dev/null +++ b/theme/templates/article.html @@ -0,0 +1,48 @@ +{% extends "base.html" %} +{% block head %} + {{ super() }} + {% for keyword in article.keywords %} + + {% endfor %} + {% for description in article.description %} + + {% endfor %} + {% for tag in article.tags %} + + {% endfor %} +{% endblock %} + +{% block pagetitle %} +{{ article.title }} +{% endblock %} +{% block content %} +{#
+
#} + {% import 'translations.html' as translations with context %} + {{ translations.translations_for(article) }} +{#
+
#} +
+ + {{ article.locale_date }} + + {% if article.modified %} + + {{ article.locale_modified }} + + {% endif %} + {% if article.authors %} +
+ {% for author in article.authors %} + {{ author }} + {% endfor %} +
+ {% endif %} +
+{#
#} +
+ {{ article.content }} +
+{#
#} +{% endblock %} -- cgit v1.2.3