mirror of
https://github.com/assenzostefano/class-website.git
synced 2025-02-18 23:40:36 +01:00
13 lines
248 B
HTML
13 lines
248 B
HTML
<!-- 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> |