10 lines
210 B
HTML
10 lines
210 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>
|