summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2016-11-15 14:00:53 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2016-11-15 14:08:53 +0100
commit05dcd9f533711e42d80e85a06716c140c8b1f3e2 (patch)
tree3fab5d77e02398a75f3dc7b9908047985cdbafd9 /templates
parent46bad35efce8817fd9fae0450e416f820ff742ce (diff)
downloadkyblo-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.html18
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 %}