2022-11-18 22:05:06 +03:00
|
|
|
<head>
|
|
|
|
{% for item in seq %}
|
|
|
|
<!-- meta for {{item}} -->
|
|
|
|
{% set key, value = call(item) %}
|
|
|
|
<meta name="{{key}}" content="{{value}}">
|
|
|
|
{% endfor %}
|
|
|
|
</head>
|
|
|
|
<body>
|
2022-11-21 16:38:11 +03:00
|
|
|
{%set navigation = [('index.html', 'Index'), ('about.html', 'About')] %}
|
2022-11-18 22:05:06 +03:00
|
|
|
{% set navigation %}
|
|
|
|
<li><a href="/">Index</a></li>
|
|
|
|
<li><a href="/downloads">Downloads</a></li>
|
|
|
|
{% endset %}
|
|
|
|
</body>
|