~ztk-steering-group/zope.pagetemplate/trunk

« back to all changes in this revision

Viewing changes to src/zope/pagetemplate/tests/input/dtml1.html

  • Committer: srichter
  • Date: 2013-02-22 16:57:41 UTC
  • Revision ID: svn-v4:62d5b8a3-27da-0310-9561-8e5933582275:zope.pagetemplate/trunk:129671
Moved to GitHub.

Show diffs side-by-side

added added

removed removed

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