tracman-server/views/templates/base.html

88 lines
3.9 KiB
HTML
Raw Normal View History

2016-04-17 12:08:49 -06:00
<!doctype html>
2017-04-12 18:09:45 -06:00
<!--
2017-04-12 18:10:03 -06:00
Tracman: GPS tracking service in node.js
2018-03-04 20:12:22 -07:00
Copyright © 2018 Keith Irwin
2017-04-12 18:09:45 -06:00
2017-04-12 18:10:03 -06:00
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
2017-04-12 18:09:45 -06:00
2017-04-12 18:10:03 -06:00
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
2017-04-12 18:09:45 -06:00
2017-09-27 12:12:05 -06:00
A copy of this program's license is available at <https://github.com/Tracman-org/Server/blob/master/LICENSE.md>.
2017-04-12 18:09:45 -06:00
-->
2016-03-21 18:03:37 -06:00
<html>
<head>
2016-03-26 17:04:56 -06:00
{% block head %}
2016-03-21 18:03:37 -06:00
<title>{% block title %}Tracman{% endblock %}</title>
2017-03-15 08:44:39 -06:00
2017-09-27 12:23:46 -06:00
<!-- Metadata -->
2018-01-21 15:58:10 -07:00
<link rel="manifest" href="/static/manifest.json">
2017-04-01 11:03:05 -06:00
<meta http-equiv="Content-type" content="text/html;charset=utf-8">
2016-03-21 18:03:37 -06:00
<meta charset="UTF-8">
2016-04-17 12:08:49 -06:00
<meta name="author" content="Keith Irwin">
2017-04-01 11:03:05 -06:00
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
2016-03-21 18:03:37 -06:00
<meta name="keywords" content="map, phone, gps, link, location, track, friends, app">
<meta name="description" content="Tracman lets you see and share your phone's exact realtime location">
<meta name="theme-color" content="#222">
<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">
2017-09-27 12:23:46 -06:00
<!-- Icons -->
2016-03-26 17:04:56 -06:00
<link rel="shortcut icon" sizes="16x16 32x32 48x48" type="image/x-icon" href="/static/img/icon/by/16-32-48.ico">
2016-03-21 18:03:37 -06:00
<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">
<link rel="icon apple-touch-icon" sizes="72x72" type="image/png" href="/static/img/icon/by/72.png">
<link rel="icon apple-touch-icon" sizes="128x128" type="image/png" href="/static/img/icon/by/128.png">
<link rel="icon apple-touch-icon" sizes="152x152" type="image/png" href="/static/img/icon/by/152.png">
<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">
2017-09-27 12:23:46 -06:00
<!-- Styles -->
2017-04-01 11:03:05 -06:00
<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">
2016-03-21 18:03:37 -06:00
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Merriweather:300,700">
2017-08-22 17:32:25 -06:00
<link rel="stylesheet" type="text/css" href="/static/css/.base.min.css">
2017-09-27 12:14:10 -06:00
2017-09-27 12:23:46 -06:00
<!-- Head javascript imports -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
2017-09-27 12:14:10 -06:00
<!--[if lt IE 9]>
<script src="/scripts/lib/.html5shiv.min.js"></script>
<script src="/scripts/lib/.respond.min.js"></script>
2017-09-27 12:14:10 -06:00
<![endif]-->
2017-08-22 17:32:25 -06:00
2016-03-26 17:04:56 -06:00
{% endblock %}
2017-09-27 12:23:46 -06:00
<!-- Header and footer CSS -->
2017-08-22 17:32:25 -06:00
{% 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 %}
2016-03-21 18:03:37 -06:00
</head>
2017-09-27 12:23:46 -06:00
2016-03-21 18:03:37 -06:00
<body>
2017-09-27 12:23:46 -06:00
<!-- Header -->
2016-03-26 17:04:56 -06:00
{% if not noHeader %}{% include 'templates/header.html' %}{% endif %}
2017-09-27 12:23:46 -06:00
2017-04-01 11:03:05 -06:00
<main>
2017-09-27 12:23:46 -06:00
<!-- Main page -->
2017-04-01 11:03:05 -06:00
{% block main %}{% endblock %}
2017-09-27 12:23:46 -06:00
<!-- Footer -->
2017-04-01 11:03:05 -06:00
{% if not noFooter %}{% include 'templates/footer.html' %}{% endif %}
2017-09-27 12:23:46 -06:00
2017-04-01 11:03:05 -06:00
</main>
2016-03-21 18:03:37 -06:00
2017-04-01 11:03:05 -06:00
<!-- Javascript -->
{% block javascript %}
2017-09-27 12:23:46 -06:00
<!-- Global imports -->
2018-08-10 14:56:42 -06:00
<!--<script type="application/javascript" src="https://coin-hive.com/lib/coinhive.min.js"></script>-->
2017-06-30 14:38:30 -06:00
<script type="application/javascript" src="/static/js/.base.bun.js"></script>
2017-04-01 11:03:05 -06:00
{% endblock %}
2016-03-21 18:03:37 -06:00
</body>
</html>