13 lines
206 B
HTML
13 lines
206 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>First app</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
</head>
|
|
<body>
|
|
|
|
<div>Hello {{ name }}</div>
|
|
|
|
|
|
</body>
|
|
</html> |