my.html
347 字节
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>我是谁
</title>
<link href="{{ url_for('static',filename='base/css/bootstrap.css') }}" rel="stylesheet">
</head>
<body>
<b>我在哪儿</b>
<b>你在{{ address }}</b>
<div>
{% for i in items %}
<h1>{{ i }}</h1>
{% endfor %}
</div>
</body>
</html>