post.html 904 B

12345678910111213141516171819202122232425262728
  1. {% extends "/html/base.html" %}
  2. {%block subtitle %}: {{post.title}}{% endblock %}
  3. {% block content %}
  4. <div id="post">
  5. {% include "/html/post-content.html" %}
  6. {% with prev=post.prev next=post.next%}
  7. {% include "/html/prev-next.html" %}
  8. {% endwith %}
  9. {% if disqus-shortname %}
  10. <div id="disqus_thread"></div>
  11. <script type="text/javascript">
  12. var disqus_config = function () {
  13. this.page.url = "{{site-url}}{{uri}}";
  14. this.page.identifier = "{{post.title}}";
  15. };
  16. (function() {
  17. var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
  18. dsq.src = '//{{disqus-shortname}}.disqus.com/embed.js';
  19. (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
  20. })();
  21. </script>
  22. {% endif %}
  23. </div>
  24. {% endblock %}