2016-11-19 03:23:57 +00:00
|
|
|
<!DOCTYPE html5>
|
|
|
|
<html>
|
2016-11-22 07:40:01 +00:00
|
|
|
<head>
|
|
|
|
{% import "header.html" as header %}
|
|
|
|
<title>Flasksite</title>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<link rel="stylesheet" href="/static/common.css">
|
2016-11-19 03:23:57 +00:00
|
|
|
|
|
|
|
<style>
|
|
|
|
body, a
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
2016-12-02 06:37:07 +00:00
|
|
|
|
2016-11-19 03:23:57 +00:00
|
|
|
<body>
|
|
|
|
{{header.make_header()}}
|
|
|
|
<p>Welcome to my flask site</p>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
2016-12-02 06:37:07 +00:00
|
|
|
</html>
|