snipt/blogs/templates/blogs/themes/default/post.html

35 lines
1.3 KiB
HTML
Raw Normal View History

2012-06-04 17:57:20 -07:00
{% extends "blogs/themes/default/base.html" %}
2012-06-05 12:46:37 -07:00
{% block html-class %}detail blog-site{% endblock %}
{% block body-class %}detail blog-site{% endblock %}
2012-06-04 17:57:20 -07:00
{% block js %}
{{ block.super }}
window.detail = true;
{% endblock %}
{% block content %}
<section class="snipts" id="snipts">
{% with 'true' as detail %}
{% include "blogs/themes/default/snipt-list.html" %}
{% endwith %}
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'snipt-net';
{% if debug %}
var disqus_developer = 1;
{% endif %}
var disqus_url = '{{ snipt.get_full_absolute_url }}{% if not snipt.public %}?key={{ snipt.key }}{% endif %}';
var disqus_title = '{{ snipt.title }}';
var disqus_identifier = {{ snipt.id }};
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'https://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</section>
{% endblock %}