From 0e59ad7de18bffcf6a62f9ee61275b4951c27358 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Fri, 3 May 2019 11:38:24 -0500 Subject: finished up initial design work --- design/templates/blog/entry_detail.html | 62 +++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 design/templates/blog/entry_detail.html (limited to 'design/templates/blog/entry_detail.html') diff --git a/design/templates/blog/entry_detail.html b/design/templates/blog/entry_detail.html new file mode 100644 index 0000000..ad4eda8 --- /dev/null +++ b/design/templates/blog/entry_detail.html @@ -0,0 +1,62 @@ +{% extends 'base.html' %} +{% load typogrify_tags %} +{%block bodyid%}id="essay-archive" class="archive"{%endblock%} + +{% block content %} +
+
+
+

{{object.title|smartypants|safe}}

+ {% if object.sub_title %}

{{object.sub_title|smartypants|safe}}

{%endif%} +
+
Filed Under: {% for tag in object.tags.all %}{{tag}}{%if forloop.last%}{%else%}, {%endif%}{% endfor %}
+ + +
+
+
+ {{object.body_html|safe|smartypants}} +
+
+ {% with object.get_next_published as next %} + {% with object.get_previous_published as prev %} + + {% if object.related.all %}
+
You might also enjoy
+ +
{%endif%} +
+{% endblock %} -- cgit v1.2.3