Mercurial > genshi > mirror
annotate examples/tutorial/geddit/templates/comment.html @ 973:59f5a8345780 trunk
Add tox file for running tests against supported Python versions.
author | hodgestar |
---|---|
date | Sat, 29 Dec 2012 22:55:51 +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> |
619
756e7418e10c
GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents:
616
diff
changeset
|
7 <title>Comment on “${link.title}”</title> |
611
236c351928a2
Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff
changeset
|
8 </head> |
633
f779e566884d
GenshiTutorial: add body class to show that the ''@*'' XPath in the match template works.
cmlenz
parents:
625
diff
changeset
|
9 <body class="comment"> |
619
756e7418e10c
GenshiTutorial: various updates to sync with wiki page.
cmlenz
parents:
616
diff
changeset
|
10 <h1>Comment on “${link.title}”</h1> |
611
236c351928a2
Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff
changeset
|
11 <p py:if="comment"> |
236c351928a2
Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff
changeset
|
12 In reply to <strong>${comment.username}</strong> |
621 | 13 at ${comment.time.strftime('%x %X')}: |
611
236c351928a2
Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff
changeset
|
14 <blockquote>${comment.content}</blockquote> |
236c351928a2
Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff
changeset
|
15 </p> |
625 | 16 <xi:include href="_form.html" /> |
611
236c351928a2
Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff
changeset
|
17 </body> |
236c351928a2
Add current code for GenshiTutorial to the `examples` directory.
cmlenz
parents:
diff
changeset
|
18 </html> |