summaryrefslogtreecommitdiff
path: root/design/templates/details
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2014-07-02 11:59:53 -0400
committerluxagraf <sng@luxagraf.net>2014-07-02 11:59:53 -0400
commitcc9695f4c4c14d61c32611dba4ec88c98c6ce460 (patch)
tree81747f2e9d1936900e9b10772b66f6b56ca5b90e /design/templates/details
parent58264b2defe5d2c28abb86603b4fbcef30da1d89 (diff)
Finished up majority of v8 redesign, merging back to master
Diffstat (limited to 'design/templates/details')
-rw-r--r--design/templates/details/entry.html4
-rw-r--r--design/templates/details/page.html6
-rw-r--r--design/templates/details/photo_galleries.html4
3 files changed, 9 insertions, 5 deletions
diff --git a/design/templates/details/entry.html b/design/templates/details/entry.html
index bfbae23..7dc98bc 100644
--- a/design/templates/details/entry.html
+++ b/design/templates/details/entry.html
@@ -62,6 +62,10 @@ class="{%if t == 0 or t == 2 %}single{%endif%}{%if t == 1 or t == 3 %}double{%en
</section>
{%endcomment%}
</main>
+ <div class="mailing-list--wrapper">
+ <h5>If you enjoyed this, you should join the mailing&nbsp;list&hellip;</h5>
+ {% include 'mailing_list.html' %}
+ </div>
{% endblock %}
{% block js %}
{% with object.template_name as t %}{%if t == 1 or t == 3 %}
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 %}
diff --git a/design/templates/details/photo_galleries.html b/design/templates/details/photo_galleries.html
index 546d767..5275f2d 100644
--- a/design/templates/details/photo_galleries.html
+++ b/design/templates/details/photo_galleries.html
@@ -48,8 +48,8 @@
{%endblock%}
{% block js %}
- <script type="text/javascript" src="/media/js/jquery.js"></script>
- <script type="text/javascript" src="/media/js/jquery.scrollTo-1.4.2-min.js"></script>
+ <script type="text/javascript" src="{{MEDIA_URL}}js/jquery.js"></script>
+ <script type="text/javascript" src="{{MEDIA_URL}}js/jquery.scrollTo-1.4.2-min.js"></script>
<script type="text/javascript" src="/media/js/photos.min.js" ></script>
{% endblock%}