9 lines
No EOL
191 B
HTML
9 lines
No EOL
191 B
HTML
<ul>
|
|
{% for href, caption in [
|
|
('index.html', 'Index'),
|
|
('about.html', 'About'),
|
|
('downloads.html', 'Downloads')]
|
|
%}
|
|
<li><a href="{{ href }}">{{ caption }}</a></li>
|
|
{% endfor %}
|
|
</ul> |