2016-11-27 09:06:11 +00:00
|
|
|
<!DOCTYPE html5>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
{% import "header.html" as header %}
|
|
|
|
<title>Flasksite</title>
|
|
|
|
<meta charset="UTF-8">
|
2017-07-21 06:10:48 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
2018-02-24 20:51:36 +00:00
|
|
|
<link rel="stylesheet" href="/static/css/common.css">
|
2019-08-14 20:43:35 +00:00
|
|
|
{% if theme %}<link rel="stylesheet" href="/static/css/theme_{{theme}}.css">{% endif %}
|
2018-09-23 23:53:49 +00:00
|
|
|
<script src="/static/js/common.js"></script>
|
|
|
|
<script src="/static/js/api.js"></script>
|
2016-11-27 09:06:11 +00:00
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
|
|
<body>
|
2017-02-05 02:30:02 +00:00
|
|
|
{{header.make_header(session=session)}}
|
|
|
|
<div id="content_body">
|
|
|
|
<p>test</p>
|
|
|
|
</div>
|
2016-11-27 09:06:11 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
</html>
|