summaryrefslogtreecommitdiff
path: root/design/templates/details/page.html
diff options
context:
space:
mode:
Diffstat (limited to 'design/templates/details/page.html')
-rw-r--r--design/templates/details/page.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/design/templates/details/page.html b/design/templates/details/page.html
index 74c75bd..8db04ff 100644
--- a/design/templates/details/page.html
+++ b/design/templates/details/page.html
@@ -1,7 +1,7 @@
{% extends 'base.html' %}
{% load typogrify_tags %}
{% block pagetitle %}Luxagraf | {{object.title}}{% endblock %}
-{% block metadescription %}{{object.metadescription}}{% endblock %}
+{% block metadescription %}{{object.meta_description}}{% endblock %}
{%block htmlclass%}class="single"{%endblock%}
{%block bodyid%}id="{{object.title|lower}}"{%endblock%}
@@ -10,9 +10,9 @@
<li>{{object.title}}</li>
</ul>
<article role="main">
- <h1 class="hide">About Luxagraf</h1>
+ <h1 class="hide">{{object.title}}</h1>
<div class="post-body-single">
- {{object.body_html|safe}}
+ {{object.body_html|safe|smartypants|widont}}
</div>
</article>
{% endblock %}