else/Templates/flask/templates/root.html
Ethan Dalool 2e337c77c5 else
2016-12-01 22:37:07 -08:00

29 lines
455 B
HTML

<!DOCTYPE html5>
<html>
<head>
{% import "header.html" as header %}
<title>Flasksite</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="/static/common.css">
<style>
body, a
{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
{{header.make_header()}}
<p>Welcome to my flask site</p>
</body>
<script type="text/javascript">
</script>
</html>