diff options
Diffstat (limited to 'design/templates/details/page.html')
-rw-r--r-- | design/templates/details/page.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/design/templates/details/page.html b/design/templates/details/page.html new file mode 100644 index 0000000..8a79e2c --- /dev/null +++ b/design/templates/details/page.html @@ -0,0 +1,18 @@ +{% extends 'base.html' %} +{% load typogrify %} +{% block pagetitle %}Luxagraf | {{object.title}}{% endblock %} +{% block metadescription %}{{object.metadescription}}{% endblock %} +{%block htmlclass%}class="single"{%endblock%} +{%block bodyid%}id="{{object.title|lower}}"{%endblock%} + +{% block primary %}<ul class="bl" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> + <li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> → </li> + <li>{{object.title}}</li> + </ul> + <article role="main"> + <h1 class="hide">About Luxagraf</h1> + <div class="post-body-single"> + {{object.body_html|safe}} + </div> + </article> +{% endblock %} |