summaryrefslogtreecommitdiff
path: root/docs/quick_tour/static_assets/hello_world.jinja2
blob: a55865231ade9ed4d1f069791e42ad09397c70bb (plain)
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Hello World</title>
    <link rel="stylesheet" href="{{ request.static_url('__main__:static/app.css') }}"/>
</head>
<body>
<h1>Hello {{ name }}!</h1>
</body>
</html>