summaryrefslogtreecommitdiff
path: root/repoze/bfg/sampleapp/templates/blog_entry.pt
blob: 6614e4950e19d09b725723299833f58998ff2ad4 (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>
    <p><a href="..">Up</a></p>
    <h1>${title}</h1>
    <p>by ${author}</p>
    <div tal:content="structure body"></div>
  </div>
</body>
</html>