Mercurial > genshi > genshi-test
view examples/tutorial/geddit/templates/comment.html @ 912:46db99909472 experimental-py3k
py3k branch: add 2to3 build infrastructure to setup.py (this pulls the tests into the source distribution so that tests can be run after building with 2to3)
author | hodgestar |
---|---|
date | Sun, 24 Oct 2010 21:09:36 +0000 |
parents | d648cd694286 |
children |
line wrap: on
line source
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:py="http://genshi.edgewall.org/"> <xi:include href="layout.html" /> <head> <title>Comment on “${link.title}”</title> </head> <body class="comment"> <h1>Comment on “${link.title}”</h1> <p py:if="comment"> In reply to <strong>${comment.username}</strong> at ${comment.time.strftime('%x %X')}: <blockquote>${comment.content}</blockquote> </p> <xi:include href="_form.html" /> </body> </html>