summaryrefslogtreecommitdiff
path: root/src/zope/tal/tests/output/document_list_source.html
blob: 69600e0d90815a9518ddcbfafc82c588ff8d1bbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!-- 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>
  <div>
  "The early bird gets the worm, but the second mouse gets the cheese."
  </div>
  <a href="#">Preferences...</a>
</div>
<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>
Copyright 2004 Acme Inc.
<div metal:fill-slot="disclaimer">
This document list is classified.
</div>
</div>
</body>
</html>