mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
74 lines
2.8 KiB
HTML
74 lines
2.8 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
{% include base.html %}
|
|
<meta charset="UTF-8">
|
|
<title>{% if page.title %}{% t page.title %} — {% endif %}Dash</title>
|
|
<meta name="description" content="{% t page.description %}">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon/favicon-16x16.png">
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/dist/css/main.min.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ content }}
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
{% include footer.html %}
|
|
</footer>
|
|
|
|
<!-- Mobile Nav -->
|
|
<div class="overlay" id="overlay" data-js-overlay-menu>
|
|
{% include nav-mobile.html %}
|
|
</div>
|
|
|
|
<!-- JavaScript -->
|
|
<script src="//cdn.jsdelivr.net/lodash/4.12.0/lodash.min.js" integrity="sha384-MYg5v6RiLsgqDiKOs6hcDXVblLg+Ls5F/jimSFosIUeDjW5VYViY1eMBMazbV5Mr" crossorigin="anonymous"></script>
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js" integrity="sha384-CgeP3wqr9h5YanePjYLENwCTSSEz42NJkbFpAFgHWQz7u3Zk8D00752ScNpXqGjS" crossorigin="anonymous"></script>
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.0/jquery.matchHeight-min.js" integrity="sha384-dfOR5hjVOg6B2OvgyHIS71mJWX5TgNQeFGo5cNNVglSep7ZvYcByrpEya6xbwwyB" crossorigin="anonymous"></script>
|
|
<script src="/dist/js/main.min.js"></script>
|
|
<script>
|
|
function formatNumber (num) {
|
|
return num.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, "$1,")
|
|
}
|
|
|
|
function formatCurrency (num,decimal) {
|
|
var _decimal;
|
|
_decimal = typeof decimal !== "undefined" ? decimal : 2;
|
|
return parseFloat(num).toFixed(_decimal).replace(/(\d)(?=(\d{3})+(?!\d))/g, "$1,")
|
|
}
|
|
</script>
|
|
|
|
<!-- Start of LiveChat (www.livechatinc.com) code -->
|
|
<script type="text/javascript">
|
|
window.__lc = window.__lc || {};
|
|
window.__lc.license = 8655926;
|
|
(function() {
|
|
var lc = document.createElement('script'); lc.type = 'text/javascript'; lc.async = true;
|
|
lc.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'cdn.livechatinc.com/tracking.js';
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(lc, s);
|
|
})();
|
|
|
|
//*********begin kickstart
|
|
//for some reason the chat window doesn't play nicely immediately on load,
|
|
//and is invisible... so this little jimmy kick starts it. ¯\_(ツ)_/¯ CCW_20170322_0356MST
|
|
var LC_API = LC_API || {};
|
|
LC_API.on_after_load = function() {
|
|
window.setTimeout(function () {
|
|
LC_API.minimize_chat_window();
|
|
}, 1500);
|
|
};
|
|
//*********end kickstart
|
|
|
|
</script>
|
|
<!-- End of LiveChat code -->
|
|
|
|
</body>
|
|
</html>
|