annotate examples/tutorial/geddit/templates/info.html @ 618:5a2059ce1f0b

Simplify the tutorial project: comments are now flat, not hierarchical.
author cmlenz
date Thu, 30 Aug 2007 09:08:06 +0000
parents 0dc152d128f5
children 71d3edd302ae
rev   line source
611
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
1 <!DOCTYPE html>
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
2 <html xmlns="http://www.w3.org/1999/xhtml"
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
3 xmlns:xi="http://www.w3.org/2001/XInclude"
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
4 xmlns:py="http://genshi.edgewall.org/">
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
5 <xi:include href="layout.html" />
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
6 <head>
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
7 <title>${submission.title}</title>
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
8 </head>
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
9 <body>
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
10 <h1>${submission.title}</h1>
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
11 <a href="${submission.url}">${submission.url}</a><br />
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
12 posted by ${submission.username}
618
5a2059ce1f0b Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 615
diff changeset
13 at ${submission.time.strftime('%m/%d/%Y %H:%M')}<br />
615
0dc152d128f5 GenshiTutorial: make URLs dynamic so that the app could theoretically be mounted on some other SCRIPT_NAME.
cmlenz
parents: 611
diff changeset
14 <a href="${url('/comment/%s/' % submission.code)}">comment</a>
618
5a2059ce1f0b Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 615
diff changeset
15 <ul py:if="submission.comments" class="comments">
5a2059ce1f0b Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 615
diff changeset
16 <li py:for="comment in submission.comments">
5a2059ce1f0b Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 615
diff changeset
17 <strong>${comment.username}</strong>
5a2059ce1f0b Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 615
diff changeset
18 at ${comment.time.strftime('%m/%d/%Y %H:%M')}
5a2059ce1f0b Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 615
diff changeset
19 <blockquote>${comment.content}</blockquote>
5a2059ce1f0b Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 615
diff changeset
20 </li>
5a2059ce1f0b Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 615
diff changeset
21 </ul>
611
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
22 </body>
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
23 </html>
Copyright (C) 2012-2017 Edgewall Software