19 lines
276 B
Twig
19 lines
276 B
Twig
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<title>My Webpage</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<ul id="navigation">
|
||
|
{% for item in navigation %}
|
||
|
<li><a href="{{ item.href }}">{{ item.caption }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
|
||
|
<h1>My Webpage</h1>
|
||
|
{{ a_variable }}
|
||
|
</body>
|
||
|
|
||
|
</html>
|