Mercurial > genshi > mirror
view examples/tutorial/geddit/templates/index.html @ 1014:2069c7a0059c stable-0.7.x
Merge r1239 from trunk (fix assert with side-effect in xi:fallback directive processing).
author | hodgestar |
---|---|
date | Mon, 17 Jun 2013 20:54:10 +0000 |
parents | f779e566884d |
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>News</title> <link rel="alternate" type="application/atom+xml" title="Geddit" href="${url('/feed/')}" /> </head> <body class="index"> <h1>News</h1> <ol py:if="links" class="links"> <li py:for="link in links"> <a href="${link.url}">${link.title}</a> posted by ${link.username} at ${link.time.strftime('%x %X')} <div class="info"> <a href="${url('/info/%s/' % link.id)}"> ${len(link.comments)} comments </a> </div> </li> </ol> <p><a class="action" href="${url('/submit/')}">Submit new link</a></p> </body> </html>