annotate examples/tutorial/geddit/templates/info.html @ 619:71d3edd302ae

GenshiTutorial: various updates to sync with wiki page.
author cmlenz
date Thu, 30 Aug 2007 14:19:59 +0000
parents 5a2059ce1f0b
children d218020fb92a
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>
619
71d3edd302ae GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
7 <title>${link.title}</title>
611
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>
619
71d3edd302ae GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
10 <h1>${link.title}</h1>
71d3edd302ae GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
11 <a href="${link.url}">${link.url}</a><br />
71d3edd302ae GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
12 posted by ${link.username} at ${link.time.strftime('%m/%d/%Y %H:%M')}<br />
71d3edd302ae GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
13 <a href="${url('/comment/%s/' % link.id)}">comment</a>
71d3edd302ae GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
14 <ul py:if="link.comments" class="comments">
71d3edd302ae GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
15 <li py:for="comment in link.comments">
618
5a2059ce1f0b Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 615
diff changeset
16 <strong>${comment.username}</strong>
5a2059ce1f0b Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 615
diff changeset
17 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
18 <blockquote>${comment.content}</blockquote>
5a2059ce1f0b Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 615
diff changeset
19 </li>
5a2059ce1f0b Simplify the tutorial project: comments are now flat, not hierarchical.
cmlenz
parents: 615
diff changeset
20 </ul>
611
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
21 </body>
16b1be35c265 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
22 </html>
Copyright (C) 2012-2017 Edgewall Software