blob: cb5b219ec2a8def4c20020e24e3a57150ba18e4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
## -*- coding: utf-8 -*-
<%namespace name="helper" file="post_helper.tmpl"/>
<%namespace name="pheader" file="post_header.tmpl"/>
<%namespace name="comments" file="comments_helper.tmpl"/>
<%namespace name="math" file="math_helper.tmpl"/>
<%inherit file="post.tmpl"/>
<%block name="content">
<article class="post-${post.meta('type')} storypage" itemscope="itemscope" itemtype="http://schema.org/Article">
<div class="e-content entry-content" itemprop="articleBody text">
${post.text()}
</div>
${math.math_scripts_ifpost(post)}
</article>
</%block>
|