From 57aa89824a8dabb631c15af986a39e779d0fe3cb Mon Sep 17 00:00:00 2001 From: Mark Weiman Date: Sun, 11 Oct 2015 01:00:38 -0400 Subject: inital --- blog/templates/post.html | 156 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 156 insertions(+) create mode 100644 blog/templates/post.html (limited to 'blog/templates/post.html') diff --git a/blog/templates/post.html b/blog/templates/post.html new file mode 100644 index 0000000..affb32a --- /dev/null +++ b/blog/templates/post.html @@ -0,0 +1,156 @@ +{% load replace %} +{% load staticfiles %} + + + + + + + + + + + + MarkZZ - Blog - {{ selected_post.title }} + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+

{{ selected_post.title }}

+{#

Problems look mighty small from 150 miles up

#} + Posted by {{ selected_post.user.username }} on {{ selected_post.created }} +
+
+
+
+
+ + +
+
+
+
+ {{ selected_post.body|safe }} +
+
+
+
+ +
+ +
+
+

Comments

+ + + {% for x in comments %} + + {% endfor %} +
NameComment
{{ x.name }}
{{ x.timestamp|date:"Y-m-d H:i" }}
{{ x.comment }}
+
+
+ +
+
+
+

New Comment

+
{% csrf_token %} + + {{ comment_form.as_table }} +
+
+
+
+
+ + + + + + + + + + + + + + +{# #} + + + + -- cgit v1.3.1