annotate examples/tutorial/geddit/templates/index.html @ 623:58be58c03509 trunk

GenshiTutorial: Minor updates to Atom feed templates.
author cmlenz
date Thu, 30 Aug 2007 23:01:49 +0000
parents 6780f1b1b20d
children abad7c2ebe15
rev   line source
611
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
1 <!DOCTYPE html>
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
2 <html xmlns="http://www.w3.org/1999/xhtml"
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
3 xmlns:xi="http://www.w3.org/2001/XInclude"
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
4 xmlns:py="http://genshi.edgewall.org/">
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
5 <xi:include href="layout.html" />
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
6 <head>
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
7 <title>News</title>
623
58be58c03509 GenshiTutorial: Minor updates to Atom feed templates.
cmlenz
parents: 622
diff changeset
8 <link rel="alternate" type="application/atom+xml" title="Geddit"
622
6780f1b1b20d GenshiTutorial: add Atom feeds.
cmlenz
parents: 621
diff changeset
9 href="${url('/feed/')}" />
611
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
10 </head>
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
11 <body>
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
12 <h1>News</h1>
622
6780f1b1b20d GenshiTutorial: add Atom feeds.
cmlenz
parents: 621
diff changeset
13 <p><a class="action" href="${url('/submit/')}">Submit new link</a></p>
611
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
14
619
756e7418e10c GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
15 <ol py:if="links" class="links">
756e7418e10c GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
16 <li py:for="link in links">
756e7418e10c GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
17 <a href="${link.url}">${link.title}</a>
621
734fbb77b579 Use system default date/time format in templates.
cmlenz
parents: 619
diff changeset
18 posted by ${link.username} at ${link.time.strftime('%x %X')}
611
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
19 <div class="info">
619
756e7418e10c GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
20 <a href="${url('/info/%s/' % link.id)}">
756e7418e10c GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
21 ${len(link.comments)} comments
615
06165fee45ab GenshiTutorial: make URLs dynamic so that the app could theoretically be mounted on some other SCRIPT_NAME.
cmlenz
parents: 611
diff changeset
22 </a>
611
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
23 </div>
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
24 </li>
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
25 </ol>
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
26 </body>
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
27 </html>
Copyright (C) 2012-2017 Edgewall Software