Files
web2py/applications/examples/views/template_examples/test_def.html
2011-12-05 11:39:42 -06:00

8 lines
212 B
HTML

{{extend 'layout.html'}}
{{def itemlink(name):}}<li>{{=A(name,_href=name)}}</li>{{return}}
<ul>
{{itemlink('http://www.google.com')}}
{{itemlink('http://www.yahoo.com')}}
{{itemlink('http://www.nyt.com')}}
</ul>