diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-15 14:00:53 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-15 14:08:53 +0100 |
commit | 05dcd9f533711e42d80e85a06716c140c8b1f3e2 (patch) | |
tree | 3fab5d77e02398a75f3dc7b9908047985cdbafd9 /templates | |
parent | 46bad35efce8817fd9fae0450e416f820ff742ce (diff) | |
download | kyblo-05dcd9f533711e42d80e85a06716c140c8b1f3e2.tar.xz |
Merge build_entry and build_index
No need to special-case this anymore with unpublished pages.
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/index.html | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/templates/index.html b/templates/index.html deleted file mode 100644 index 628e078..0000000 --- a/templates/index.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends 'layout.html' %} - -{% block content %} -<article itemscope itemtype="http://schema.org/Article"> - <div> - <h1>{{ entry['title'] }}</h1> - <time itemprop="datePublished" datetime="{{ entry['date'] }}">{{ entry['date'] }}</time> - </div> - <div> - {{ content }} - </div> -</article> -{% if older %} -<div id="post-nav"> - <a class="older" href="{{ older['file'] }}.html">Older ({{ older['title'] }})</a> -</div> -{% endif %} -{% endblock %} |