mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
44 lines
1.6 KiB
HTML
44 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% block head %}
|
|
<title>{{ site_title }}</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="static/images/favicon/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ favicon32_path }}">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ favicon16_path }}">
|
|
<link rel="manifest" href="static/images/favicon/site.webmanifest">
|
|
<link rel="mask-icon" href="static/images/favicon/safari-pinned-tab.svg" color="{{ color_tag_cmd }}">
|
|
<link rel="shortcut icon" href="static/images/favicon/favicon.ico">
|
|
<meta name="msapplication-TileColor" content="{{ color_tag_loctitle }}">
|
|
<meta name="msapplication-config" content="static/images/favicon/browserconfig.xml">
|
|
<meta name="theme-color" content="{{ color_btn_submit }}">
|
|
<link href="static/css/icofont/icofont.min.css" rel="stylesheet" />
|
|
<link href="static/css/hyperglass.css" rel="stylesheet" />
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
{% block scripts %}
|
|
<script src="static/js/jquery-3.4.0.min.js"></script>
|
|
<script src="static/js/hyperglass.js"></script>
|
|
{% if google_analytics|length > 0 %}
|
|
<!--Google Analytics-->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ google_analytics }}"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag() {
|
|
dataLayer.push(arguments);
|
|
}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', '{{ google_analytics }}');
|
|
</script>
|
|
{% endif %}
|
|
{% endblock %}
|
|
</html>
|