31 |
32 |
33 | {{ post.title }}
34 |
35 |
36 |
37 | {% if post_body %}
38 |
39 |
40 | {% if post.body_html %}
41 | {{ post.body_html|safe }}
42 | {% else %}
43 | {{ post.body }}
44 | {% endif %}
45 |
46 |
47 | {% else %}
48 |
49 |
50 | {% if post.body_html %}
51 | {{ post.body_html|safe }}
52 | {% else %}
53 | {{ post.body }}
54 | {% endif %}
55 |
56 |
57 | {% endif %}
58 |