summaryrefslogtreecommitdiff
path: root/design/templates/pages/page.html
blob: 095ccd1677db82d17eb2010a0806f5429f087647 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends 'base.html' %}
{% load typogrify_tags %}
{%block bodyid%}id="page" class="detail"{%endblock%}

{% block content %}
<div class="content-narrow">
<article class="h-entry hentry" itemscope itemType="http://schema.org/Article">
    <h3 class="hed-primary">{{object.title|safe|smartypants|widont}}</h3>
    <div class="e-content">{{object.body_html|safe|smartypants}}</div>
</article>
</div>
{% endblock %}