story.tmpl 424 B

123456789101112131415
  1. ## -*- coding: utf-8 -*-
  2. <%inherit file="post.tmpl"/>
  3. <%namespace name="helper" file="post_helper.tmpl"/>
  4. <%block name="extra_head">
  5. ${helper.twitter_card_information(post)}
  6. </%block>
  7. <%block name="content">
  8. %if title:
  9. <h1>${title}</h1>
  10. %endif
  11. ${post.text()}
  12. %if enable_comments and not post.meta('nocomments'):
  13. ${disqus.html_disqus(post.permalink(absolute=True), post.title(), post.base_path)}
  14. %endif
  15. </%block>