blob: 8a79e2c8d8717be23886cc7d0add703c7b567f1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 %}
|