quadfile/templates/shell.html

14 lines
431 B
HTML
Raw Normal View History

2015-12-23 13:11:38 +00:00
<!doctype html>
<html>
<head>
<title>{{ page.title }}</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="page">
{% block body %}{% endblock %}
</div>
</body>
</html>