From 36c2ef5937c24f9f276f75ac439ec2670f33e5b3 Mon Sep 17 00:00:00 2001 From: Fish Date: Sat, 25 Mar 2017 16:38:01 -0600 Subject: pelican-striped-html5up added for pull request to origin --- pelican-striped-html5up/templates/article.html | 49 ++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 pelican-striped-html5up/templates/article.html (limited to 'pelican-striped-html5up/templates/article.html') diff --git a/pelican-striped-html5up/templates/article.html b/pelican-striped-html5up/templates/article.html new file mode 100644 index 0000000..d405c65 --- /dev/null +++ b/pelican-striped-html5up/templates/article.html @@ -0,0 +1,49 @@ +{% extends "base.html" %} +{% block head %} + {{ super() }} + {% if article.description %} + + {% endif %} + + {% for tag in article.tags %} + + {% endfor %} + +{% endblock %} + +{% block content %} +
+
+
+
+

{{ article.title }}

+

{{article.headline}}

+
+
+ {{ article.date | strftime('%b') }} {{ article.date | strftime('%d') }} {{ article.date | strftime('%Y') }} + +
+
 
+
+ {{ article.content }} +
+ + + +
+ +{% endblock %} -- cgit