From e69f7da0dc610528b19fa868f273ca4089b0f7fb Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sun, 8 Jun 2014 19:52:11 -0400 Subject: finished up notes app. still need to design and test, but it more or less works. --- design/templates/details/note.html | 54 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 design/templates/details/note.html (limited to 'design/templates/details/note.html') diff --git a/design/templates/details/note.html b/design/templates/details/note.html new file mode 100644 index 0000000..fab554c --- /dev/null +++ b/design/templates/details/note.html @@ -0,0 +1,54 @@ +{% extends 'base.html' %} +{% load typogrify_tags %} +{% load html5_datetime %} +{% load month_number_to_name %} +{% block pagetitle %}{{object.title|title|smartypants|safe}} - Luxagraf, Notes{% endblock %} + +{% block metadescription %}{{object.body_html|striptags|safe}}{% endblock %} +{%block extrahead%} + + + + + +{%endblock%} + + +{% block primary %} +
+
+ {{object.link_twitter_names|safe|amp|smartypants|urlizetrunc:45 }} +
+ + + {% with object.get_next_published as next %} + {% with object.get_previous_published as prev %} + {%endwith%}{%endwith%} +
+{% endblock %} -- cgit v1.2.3