Move to a 2-column layout - comments on the right.
1 {% extends "blog/blog.html" %}
3 {% load microformats %}
5 {% block title %}{{ post.title }}{% endblock %}
8 <div class="container_12">
10 <a href="{% url agdj.blog.views.post_list %}">blog:</a>
11 <a href="{{ post.urls.view }}">{{ post.title }}</a>
13 <div class="grid_12" id="metadata">
15 <a href="{% url index %}">posted
16 <span class="humanize iso8601">{{ post.pub_date|iso8601 }}</span></a></p>
17 <div class="tag-container">tagged:
18 {% with post as object %}
19 {% include "blog/render_post_tags_list.html" %}
23 <div class="grid_6 suffix_1" id="content">
24 <div class="post-content">
25 {{ post.source|markdown2 }}
28 <div class="grid_5" id="comments">
29 <div class="comments">
31 <p>{{ post.spam_count }} spam comment{{ post.spam_count|pluralize }} omitted.</p>
32 <form class="add nospam-me" action="" method="post">
34 <legend>Add Comment</legend>
36 use <a href="http://daringfireball.net/projects/markdown/">Markdown</a>
37 formatting. Raw HTML will be stripped.</p>
38 {% for field in comment_form %}
39 <div class="field field-{{ field.name }}">
40 {{ field.label_tag }}{{ field }}{{ field.errors }}
43 <div><input type="submit" class="submit" value="Add Comment" /></div>
46 {% for object in comments %}
47 {% include "blog/render_comment.html" %}