flask_helloworld1/app/templates/index.html

11 lines
250 B
HTML
Raw Normal View History

2020-07-03 10:29:57 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello</title>
</head>
<body>
2020-07-04 14:11:16 +00:00
<h2>Hello{% if name %},&nbsp;<span>{{ name }}</span>{% endif %}</h2></body><br/>
<p><a href="{{ url_for('.admin') }}">Admin</a></p>
2020-07-03 10:29:57 +00:00
</body>
</html>