summaryrefslogtreecommitdiffstats
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-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 %}