view examples/tutorial/geddit/templates/index.html @ 621:d218020fb92a

Use system default date/time format in templates.
author cmlenz
date Thu, 30 Aug 2007 19:09:28 +0000
parents 71d3edd302ae
children dc35e9882390
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="${url('/submit/')}">Submit new link</a></p>

    <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>
  </body>
</html>
Copyright (C) 2012-2017 Edgewall Software