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">
|
2015-12-24 21:36:51 +00:00
|
|
|
|
|
|
|
<!-- Meta tags for web app usage -->
|
2015-12-26 17:28:44 +00:00
|
|
|
<meta content="#1D1D1D" name="theme-color">
|
2015-12-24 21:36:51 +00:00
|
|
|
<meta content="yes" name="mobile-web-app-capable">
|
|
|
|
<meta content="yes" name="apple-mobile-web-app-capable">
|
|
|
|
<meta content="black-translucent" name="apple-mobile-web-app-status-bar-style">
|
|
|
|
|
|
|
|
<!-- Logo links -->
|
2015-12-24 21:42:47 +00:00
|
|
|
<link href="{{ url_for('static', filename='logo/152px.png') }}" rel="apple-touch-icon">
|
2015-12-24 21:36:51 +00:00
|
|
|
<link href="{{ url_for('static', filename='logo/16px.png') }}" rel="icon" sizes="16x16">
|
|
|
|
<link href="{{ url_for('static', filename='logo/32px.png') }}" rel="icon" sizes="32x32">
|
|
|
|
<link href="{{ url_for('static', filename='logo/64px.png') }}" rel="icon" sizes="64x64">
|
2015-12-24 21:42:47 +00:00
|
|
|
<link href="{{ url_for('static', filename='logo/152px.png') }}" rel="icon" sizes="152x152">
|
2015-12-24 21:36:51 +00:00
|
|
|
|
2015-12-23 13:11:38 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="page">
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|