summaryrefslogtreecommitdiff
path: root/themes/ccc/templates/front.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'themes/ccc/templates/front.tmpl')
-rw-r--r--themes/ccc/templates/front.tmpl15
1 files changed, 15 insertions, 0 deletions
diff --git a/themes/ccc/templates/front.tmpl b/themes/ccc/templates/front.tmpl
new file mode 100644
index 00000000..cb5b219e
--- /dev/null
+++ b/themes/ccc/templates/front.tmpl
@@ -0,0 +1,15 @@
1## -*- coding: utf-8 -*-
2<%namespace name="helper" file="post_helper.tmpl"/>
3<%namespace name="pheader" file="post_header.tmpl"/>
4<%namespace name="comments" file="comments_helper.tmpl"/>
5<%namespace name="math" file="math_helper.tmpl"/>
6<%inherit file="post.tmpl"/>
7
8<%block name="content">
9<article class="post-${post.meta('type')} storypage" itemscope="itemscope" itemtype="http://schema.org/Article">
10 <div class="e-content entry-content" itemprop="articleBody text">
11 ${post.text()}
12 </div>
13 ${math.math_scripts_ifpost(post)}
14</article>
15</%block>