SP/web2py/applications/examples/views/template_examples/test_def.html
Saturneic 064f602b1a Add.
2018-10-25 23:33:13 +08: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>