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