]> git.sur5r.net Git - i3/i3.github.io/blob - _templates/post.mako
a342294d660e12eca014e96c352f05574d78ef9c
[i3/i3.github.io] / _templates / post.mako
1 <%page args="post"/>
2 <div class="blog_post">
3   <a name="${post.slug}"></a>
4   <h2 class="blog_post_title"><a href="${post.permapath()}" rel="bookmark" title="Permanent Link to ${post.title}">${post.date.strftime("%Y-%m-%d")}: ${post.title}</a></h2>
5   <div class="post_prose">
6     ${self.post_prose(post)}
7   </div>
8 </div>
9
10 <%def name="post_prose(post)">
11   ${post.content}
12 </%def>