1234567891011121314151617181920212223242526 |
- {% extends "/html/base.html" %}
- {%block subtitle %}: {{post.title}} on {{post.date|date:"MM.dd"}}{% endblock %}
- {% block content %}
- <div id="post">
- {% include "/html/post-content.html" %}
- {% include "/html/partials/post-pagination.html" %}
- {% if disqus-shortname %}
- <div id="disqus_thread"></div>
- <script type="text/javascript">
- var disqus_config = function () {
- this.page.url = "{{site-url}}{{uri}}";
- this.page.identifier = "{{post.title}}";
- };
- (function() {
- var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
- dsq.src = '//{{disqus-shortname}}.disqus.com/embed.js';
- (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
- })();
- </script>
- {% endif %}
- </div>
- {% endblock %}
|