summaryrefslogtreecommitdiff
path: root/src/zope/tal/tests/input/document_list.pt
blob: 8226be18ea7959993ce8485bf2bc0955e0b907bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- ACME's document_list uses the ACME look and feel -->
<html metal:use-macro="acme_macros_page">
<head>
<title metal:fill-slot="title">Acme Document List</title>
<style metal:fill-slot="local-styles" type="text/css">
  body { background-color: white; }
</style>
</head>
<body>
<div metal:fill-slot="content">
<h1>Documents</h1>
<ul>
<li>Rocket Science for Dummies</li>
<li>Birds for the Gourmet Chef</li>
</ul>
</div>
<div metal:fill-slot="disclaimer">
This document list is classified.
</div>
</body>
</html>