summaryrefslogtreecommitdiffstats
path: root/nikola/data/themes/orphan/templates/index.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'nikola/data/themes/orphan/templates/index.tmpl')
-rw-r--r--nikola/data/themes/orphan/templates/index.tmpl21
1 files changed, 0 insertions, 21 deletions
diff --git a/nikola/data/themes/orphan/templates/index.tmpl b/nikola/data/themes/orphan/templates/index.tmpl
deleted file mode 100644
index 59d391a..0000000
--- a/nikola/data/themes/orphan/templates/index.tmpl
+++ /dev/null
@@ -1,21 +0,0 @@
-## -*- coding: utf-8 -*-
-<%namespace name="helper" file="index_helper.tmpl"/>
-<%namespace name="disqus" file="disqus_helper.tmpl"/>
-<%inherit file="base.tmpl"/>
-<%block name="content">
- % for post in posts:
- <div class="postbox">
- <h1><a href="${post.permalink()}">${post.title()}</a>
- <small>&nbsp;&nbsp;
- ${messages("Posted")}: ${post.formatted_date(date_format)}
- </small></h1>
- <hr>
- ${post.text(teaser_only=index_teasers)}
- % if not post.meta('nocomments'):
- ${disqus.html_disqus_link(post.permalink()+"#disqus_thread", post.base_path)}
- % endif
- </div>
- % endfor
- ${helper.html_pager()}
- ${disqus.html_disqus_script()}
-</%block>