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/base.html | 104 ++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 pelican-striped-html5up/templates/base.html (limited to 'pelican-striped-html5up/templates/base.html') diff --git a/pelican-striped-html5up/templates/base.html b/pelican-striped-html5up/templates/base.html new file mode 100644 index 0000000..1c228f1 --- /dev/null +++ b/pelican-striped-html5up/templates/base.html @@ -0,0 +1,104 @@ + + + + {% block head %} + {% block title %}{{ SITENAME }}{% endblock title %} + + {% if FEED_ALL_ATOM %} + + {% endif %} + {% if FEED_ALL_RSS %} + + {% endif %} + {% if FEED_ATOM %} + + {% endif %} + {% if FEED_RSS %} + + {% endif %} + {% if CATEGORY_FEED_ATOM and category %} + + {% endif %} + {% if CATEGORY_FEED_RSS and category %} + + {% endif %} + {% if TAG_FEED_ATOM and tag %} + + {% endif %} + {% if TAG_FEED_RSS and tag %} + + {% endif %} + {% endblock head %} + + + + + + + + + + + {% block content %} + {% endblock %} + + + -- cgit