16 lines
399 B
HTML
16 lines
399 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Asia Tours</title>
|
|
</head>
|
|
<body>
|
|
<h1>Asia Tours Schedule for June</h1>
|
|
<ul>
|
|
{% for tour in tours %}
|
|
<li>{{tour}}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|