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

24 lines
686 B
HTML
Raw Normal View History

2012-06-04 17:57:20 -07:00
{% extends "blogs/themes/default/base.html" %}
2012-06-05 21:53:02 -07:00
{% block html-class %}blog-site blog-detail{% endblock %}
{% block body-class %}blog-site blog-detail{% endblock %}
2012-06-04 17:57:20 -07:00
{% block js %}
{{ block.super }}
window.detail = true;
{% endblock %}
2012-06-05 16:57:19 -07:00
{% block page-title %}// {{ snipt.title }} {{ block.super }}{% endblock %}
{% block breadcrumb %}
<li><span class="prompt">//</span> <a href="{{ snipt.get_absolute_url }}">{{ snipt.title }}</a></li>
{% endblock %}
2012-06-04 17:57:20 -07:00
{% block content %}
<section class="snipts" id="snipts">
{% with 'true' as detail %}
{% include "blogs/themes/default/snipt-list.html" %}
{% endwith %}
</section>
{% endblock %}