Collin J. Doering
05bdb874fc
Setup Piwik tracking of page loads. The global array _paq is used to communicate commands to the piwik tracker via the script piwik.js which is loaded asynchronously from the analytics server. Every time a ajax call is made successfully and content is loaded in the page, analytics data is captured and sent to the tracker (the loadPageContent function). Signed-off-by: Collin J. Doering <collin.doering@rekahsoft.ca>
73 lines
2.4 KiB
HTML
73 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html class='en' manifest='manifest.appcache'>
|
|
<head>
|
|
<!-- Basic Page Needs -->
|
|
<meta charset='utf-8'>
|
|
<title>RekahSoft</title>
|
|
<meta content="The technical musings of a minimalist" name="description">
|
|
<meta content="Collin Doering" name="author">
|
|
<meta content="copyright" content="Copyright 2015 - Collin Doering">
|
|
<meta content="collin, collin doering, rekahsoft, functional programming, math" content="keywords">
|
|
|
|
<!-- Mobile Specific Metas -->
|
|
<meta content='width=device-width, initial-scale=1, maximum-scale=1' name='viewport'>
|
|
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" href="lib/css/normalize.css">
|
|
<link rel="stylesheet" href="lib/css/skeleton.css">
|
|
|
|
<!-- Custom styles for this template -->
|
|
<link href='default.css' rel='stylesheet'>
|
|
|
|
<!-- Favicons -->
|
|
<link href='/images/favicon.ico' rel='shortcut icon'>
|
|
|
|
<noscript>
|
|
<style>
|
|
#page-content.init.loading {
|
|
opacity: 1;
|
|
height: 100%;
|
|
}
|
|
|
|
#nav.loading {
|
|
animation-play-state: paused;
|
|
}
|
|
</style>
|
|
</noscript>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Piwik (no js)-->
|
|
<noscript><p><img src="//analytics.rekahsoft.ca/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
|
|
|
|
$partial("templates/partials/logo-banner.html")$
|
|
$partial("templates/partials/nav.html")$
|
|
|
|
<div class='container' id='status'>
|
|
<p class='message'></p>
|
|
<a class='close-button'>Close</a>
|
|
</div>
|
|
|
|
<div class='init loading' id='page-content'>
|
|
<noscript>
|
|
<div class='container' id='noscript-alert'>
|
|
<h1>This site requires javascript!</h1>
|
|
<p>
|
|
If you insist on not using javascript we provide a simplified website
|
|
<a class='alert-link' href='nojs/index.html'>here</a>
|
|
</p>
|
|
</div>
|
|
</noscript>
|
|
</div>
|
|
$partial("templates/partials/footer.html")$
|
|
|
|
<!-- External javascript libraries: JQuery, and JQuery-Address -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<script src='lib/js/jquery-1.11.2.js' type='text/javascript'></script>
|
|
<script src='lib/js/jquery.address.js' type='text/javascript'></script>
|
|
<script src='https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML' type='text/javascript'></script>
|
|
<!-- Custom javascript for user interactivity -->
|
|
<script src='js/default.js' type='text/javascript'></script>
|
|
</body>
|
|
</html>
|