<!-- Hello world in HTML -->
<!DOCTYPE html>
<html>
<head>
<title>My first HTML page</title>
</head>
<body>
<h1>Hello world!</h1>
{% for imageList in imageList %}
<img src = "{{ url_for('static', filename=imageList)}}">
{% endfor %}
</body>
</html>