Commit 81b81179 authored by Chris McDonough's avatar Chris McDonough

*** empty log message ***

parent bcf45c64
<html>
<body>
<head>
<title tal:content="nothing">Hello World!</title>
</head>
</body>
</html>
<html tal:define="global x python:1">
<head></head>
<body>
<div tal:define="x python:2">
<span tal:content="x">Should be 2 here!</span>
</div>
<div>
<span tal:content="x">Should be 1 here!</span>
</div>
<div tal:define="global x python:3">
<span tal:content="x">Should be 3 here!</span>
</div>
</body>
</html>
<html>
<head>
<title>Loop doc</title>
</head>
<body>
<p>Choose your type:</p>
<ul>
<li tal:repeat="type python:'digital', 'analog', 'organic'">
<a href="dummy" tal:attributes="href string:/mach/$type"
tal:content="type">selection</a>
</li>
</ul>
</body>
</html>
<html>
<body>
<head>
<title tal:content="string:Hello World!">This is the title</title>
</head>
</body>
</html>
<html>
<body>
<head>
<title tal:content="nothing"></title>
</head>
</body>
</html>
<html tal:define="global x python:1">
<head/>
<body>
<div tal:define="x python:2">
<span tal:content="x">2</span>
</div>
<div>
<span tal:content="x">1</span>
</div>
<div tal:define="global x python:3">
<span tal:content="x">3</span>
</div>
</body>
</html>
<html>
<head>
<title>Loop doc</title>
</head>
<body>
<p>Choose your type:</p>
<ul>
<li tal:repeat="type python:'digital', 'analog', 'organic'">
<a href="/mach/digital"
tal:attributes="href string:/mach/$type"
tal:content="type">digital</a>
</li>
<li tal:repeat="type python:'digital', 'analog', 'organic'">
<a href="/mach/analog"
tal:attributes="href string:/mach/$type"
tal:content="type">analog</a>
</li>
<li tal:repeat="type python:'digital', 'analog', 'organic'">
<a href="/mach/organic"
tal:attributes="href string:/mach/$type"
tal:content="type">organic</a>
</li>
</ul>
</body>
</html>
<html>
<body>
<head>
<title tal:content="string:Hello World!">Hello World!</title>
</head>
</body>
</html>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment