view examples/tutorial/geddit/templates/index.html @ 613:d8f961381f75

GenshiTutorial: fix storing of submissions.
author cmlenz
date Wed, 29 Aug 2007 19:34:39 +0000
parents 16b1be35c265
children 0dc152d128f5
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>
  </head>
  <body>
    <h1>News</h1>
    <p><a href="/submit/">Submit new link</a></p>

    <ol py:if="submissions" class="submissions">
      <li py:for="submission in submissions">
        <a href="${submission.url}">${submission.title}</a>
        posted by ${submission.username}
        at ${submission.time.strftime('%M/%d/%Y %H:%m')}<br />
        <div class="info">
          <a href="/info/${submission.code}/">${len(submission.total_comments)} comments</a>
        </div>
      </li>
    </ol>
  </body>
</html>
Copyright (C) 2012-2017 Edgewall Software