summaryrefslogtreecommitdiff
path: root/repoze/bfg/sampleapp/www/blog.pt
blob: ffe8659df01c295030addfead58cf0d84628f570 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html xmlns="http://www.w3.org/1999/xhtml"
     xmlns:tal="http://xml.zope.org/namespaces/tal">
<head></head>
<body tal:define="info view.getInfo()">
  <h1 tal:content="info.name">Blog Name</h1>
  <table border="0">
    <thead>
      <th>Title</th>
      <th>Author</th>
      <th>Created</th>
    </thead>
    <tr tal:repeat="entry info.entries">
      <td><a href="${entry.name}/">${entry.title}</a></td>
      <td>${entry.author}</td>
      <td>${entry.created}</td>
    </tr>
  </table>
</body>
</html>