From 5c231ceade17e7f5b1bba90e845dd2d17e54da1c Mon Sep 17 00:00:00 2001 From: Valentin Heinz Date: Sat, 8 Apr 2017 14:03:25 +0200 Subject: uikit demo theme ported to pelican (#385) --- uikit/templates/articles.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 uikit/templates/articles.html (limited to 'uikit/templates/articles.html') diff --git a/uikit/templates/articles.html b/uikit/templates/articles.html new file mode 100644 index 0000000..8454395 --- /dev/null +++ b/uikit/templates/articles.html @@ -0,0 +1,20 @@ +{% extends "index.html" %} +{% import 'html_macros.html' as html_macros %} + +{% block head %} +{{ super() }} +{% endblock head %} +{% block titlename %}{{'all articles'|capitalize}}{% endblock titlename %} + +{% block content %} +{% block heading %} + +

{{'all the articles'|capitalize}}

+ + +{% endblock heading %} +{% endblock content %} -- cgit