tracman-server/views/templates/base.html

79 lines
3.7 KiB
HTML
Raw Normal View History

2016-04-17 12:08:49 -06:00
<!doctype html>
2017-04-12 18:09:45 -06:00
<!--
Tracman: GPS tracking service in node.js
Copyright © 2017 Keith Irwin
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.
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.
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
(A full copy of this programs license is available at https://github.com/Tracman-org/Server/blob/master/LICENSE.md)
-->
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
<link rel="manifest" href="/static/manifest.webmanifest">
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">
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-04-12 18:06:34 -06:00
<link rel="stylesheet" type="text/css" href="/static/css/base.min.css">
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">
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
2017-04-01 11:03:05 -06:00
2016-03-26 17:04:56 -06:00
{% endblock %}
2016-03-21 18:03:37 -06:00
</head>
<body>
2016-03-26 17:04:56 -06:00
{% if not noHeader %}{% include 'templates/header.html' %}{% endif %}
2017-04-01 11:03:05 -06:00
<main>
{% block main %}{% endblock %}
{% if not noFooter %}{% include 'templates/footer.html' %}{% endif %}
</main>
2016-03-21 18:03:37 -06:00
2017-04-01 11:03:05 -06:00
<!-- Javascript -->
{% block javascript %}
2016-03-21 18:03:37 -06:00
<script>
2017-04-01 11:03:05 -06:00
// Google analytics
2016-03-21 18:03:37 -06:00
(function(t,r,a,c,m,o,n){t['GoogleAnalyticsObject']=m;t[m]=t[m]||function(){
2016-03-31 15:01:27 -06:00
(t[m].q=t[m].q||[]).push(arguments);},t[m].l=1*new Date();o=r.createElement(a),
n=r.getElementsByTagName(a)[0];o.async=1;o.src=c;n.parentNode.insertBefore(o,n);
2016-03-21 18:03:37 -06:00
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
2016-03-31 15:01:27 -06:00
/* global ga */
ga('create','UA-44266909-3','auto');
ga('require','linkid');
ga('send','pageview');
2017-04-01 11:03:05 -06:00
2016-03-21 18:03:37 -06:00
</script>
2017-04-01 11:03:05 -06:00
{% endblock %}
2016-03-21 18:03:37 -06:00
</body>
</html>