summaryrefslogtreecommitdiff
path: root/src/zope/pagetemplate/tests/input/dtml1.html
blob: 421a1b10200b389ace913d19c5543e4f94ec1327 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html xmlns:tal="http://xml.zope.org/namespaces/tal">
  <head><title>Test of documentation templates</title></head>
  <body>
      <span tal:replace="nothing"> blah </span>
      <dl tal:condition="options/content/args">
        <dt>The arguments to this test program were:</dt>
        <dd>
          <ul>
            <li tal:repeat="arg options/content/args">
              Argument number <span tal:replace="arg/num">99</span>
              is <span tal:replace="arg/arg">default</span>
            </li>
          </ul>
        </dd>
      </dl>
      <p tal:condition="not:options/content/args">No arguments were given.</p>
      And thats da trooth.
  </body>
</html>