summaryrefslogtreecommitdiff
path: root/repoze/bfg/sampleapp/templates/blog_entry.pt
blob: 20e1b4409c0e22bb066a5397934f6d84457cb197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<html xmlns="http://www.w3.org/1999/xhtml"
     xmlns:tal="http://xml.zope.org/namespaces/tal">
<head></head>
<body>
  <div tal:define="info view.getInfo()">
    <p><a href="..">Up</a></p>
    <h1>${info.title}</h1>
    <p>by ${info.author}</p>
    <div tal:content="structure info.body"></div>
  </div>
</body>
</html>