Mercurial > genshi > mirror
annotate examples/tutorial/geddit/templates/index.html @ 628:9822dfff0fd5 trunk
GenshiTutorial: tweaks to sync with code on wiki page.
author | cmlenz |
---|---|
date | Mon, 03 Sep 2007 19:59:03 +0000 |
parents | 3ed77fbfafa8 |
children | f779e566884d |
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> |
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> |
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 | 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 | 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> |