summaryrefslogtreecommitdiff
path: root/quoins/templates/new_comment.html
diff options
context:
space:
mode:
Diffstat (limited to 'quoins/templates/new_comment.html')
-rw-r--r--quoins/templates/new_comment.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/quoins/templates/new_comment.html b/quoins/templates/new_comment.html
new file mode 100644
index 0000000..1c1ae9d
--- /dev/null
+++ b/quoins/templates/new_comment.html
@@ -0,0 +1,44 @@
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml"
4 xmlns:xi="http://www.w3.org/2001/XInclude"
5 xmlns:py="http://genshi.edgewall.org/">
6 <xi:include href="master.html" />
7 <xi:include href="blog-master.html" />
8
9 <head>
10 <meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
11 <title>${blog.title}</title>
12 </head>
13
14
15 <body>
16 <div id="main">
17 <div id="blog-content">
18
19 <div class="blog-post">
20 <div class="blog-post-head">
21 <h2><a title="Permanent link to ${post.title}"
22 href="${quoins.url('/post/%s'%post.id)}"
23 rel="bookmark">${post.title}</a>
24 </h2>
25 <p class="dateline">
26 Posted by ${post.author.display_name}
27 on ${post.created.strftime('%B %d, %Y at %I:%M %p')}
28 </p>
29 </div> <!-- blog-post-head -->
30
31 <div class="blog-post-content">
32 <div py:content="quoins.get_html(post.long_body)" />
33
34 </div> <!-- blog-post_content -->
35
36 </div> <!-- blog-post -->
37
38 ${form(defaults, action=action)}
39
40 </div> <!-- blog-content -->
41 </div> <!-- main -->
42
43 </body>
44</html>