annotate examples/tutorial/geddit/templates/index.html @ 1045:d7ede0cf4735 stable-0.6.x tip

Merge r1269 from trunk (fix for selecting namespaced attributes).
author hodgestar
date Thu, 20 Mar 2014 13:01:56 +0000
parents f779e566884d
children
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>
628
9822dfff0fd5 GenshiTutorial: tweaks to sync with code on wiki page.
cmlenz
parents: 627
diff changeset
8 <link rel="alternate" type="application/atom+xml" title="Geddit"
9822dfff0fd5 GenshiTutorial: tweaks to sync with code on wiki page.
cmlenz
parents: 627
diff changeset
9 href="${url('/feed/')}" />
611
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
10 </head>
633
f779e566884d GenshiTutorial: add body class to show that the ''@*'' XPath in the match template works.
cmlenz
parents: 628
diff changeset
11 <body class="index">
611
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
12 <h1>News</h1>
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
13
628
9822dfff0fd5 GenshiTutorial: tweaks to sync with code on wiki page.
cmlenz
parents: 627
diff changeset
14 <ol py:if="links" class="links">
619
756e7418e10c GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
15 <li py:for="link in links">
756e7418e10c GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents: 618
diff changeset
16 <a href="${link.url}">${link.title}</a>
621
734fbb77b579 Use system default date/time format in templates.
cmlenz
parents: 619
diff changeset
17 posted by ${link.username} at ${link.time.strftime('%x %X')}
628
9822dfff0fd5 GenshiTutorial: tweaks to sync with code on wiki page.
cmlenz
parents: 627
diff changeset
18 <div class="info">
9822dfff0fd5 GenshiTutorial: tweaks to sync with code on wiki page.
cmlenz
parents: 627
diff changeset
19 <a href="${url('/info/%s/' % link.id)}">
9822dfff0fd5 GenshiTutorial: tweaks to sync with code on wiki page.
cmlenz
parents: 627
diff changeset
20 ${len(link.comments)} comments
9822dfff0fd5 GenshiTutorial: tweaks to sync with code on wiki page.
cmlenz
parents: 627
diff changeset
21 </a>
9822dfff0fd5 GenshiTutorial: tweaks to sync with code on wiki page.
cmlenz
parents: 627
diff changeset
22 </div>
611
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
23 </li>
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
24 </ol>
625
abad7c2ebe15 GenshiTutorial: implemented AJAX commenting.
cmlenz
parents: 623
diff changeset
25
628
9822dfff0fd5 GenshiTutorial: tweaks to sync with code on wiki page.
cmlenz
parents: 627
diff changeset
26 <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
27 </body>
236c351928a2 Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff changeset
28 </html>
Copyright (C) 2012-2017 Edgewall Software