blob: 68490ba32de756e4518e5509c73a4dfb20a7806b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% extends 'discursive_base.html' %}
{% load typogrify_tags %}
{% load comments %}
{% block pagetitle %}Learn Discursive Meditation{% endblock %}
{% block metadescription %}{{object.meta_description}}{% endblock %}
{%block bodyclass%}detail{%endblock%}
{%block bodyid%}{%endblock%}
{% block breadcrumbs %}{% include "lib/breadcrumbs.html" with breadcrumbs=breadcrumbs %}{% endblock %}
{% block content %}<main>
<article>
<header class="post-header">
<h1 class="post-title">{{object.title}}</h1>
{%if object.sub_title %}<h2 class="post-subtitle">{{object.sub_title}}</h2>{%endif%}
</header>
<div class="post-article">
{{object.body_html|safe|smartypants|widont}}
</div>
</article>
</main>
{% endblock %}
|