ciclostile/example/templates/index.html

16 lines
195 B
HTML
Raw Normal View History

2018-04-07 04:17:49 +02:00
<!DOCTYPE html>
<html>
<head>
<title>INDEX</title>
</head>
<body>
<ul>
{% for page in pages %}
<li>{{page['title']}}</li>
{% endfor %}
</ul>
</body>
</html>