👌 IMPROVE: Remove Analytics JS

Signed-off-by: Luke Tainton <luke@tainton.uk>
This commit is contained in:
Luke Tainton 2020-04-23 16:37:46 +01:00
parent 3fd4bc954d
commit 54ca19dd0d
No known key found for this signature in database
GPG Key ID: 132B5300A02F114B

View File

@ -2,66 +2,47 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Luke Tainton</title> <title>Luke Tainton</title>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="assets/css/main.css"> <link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/fa/css/all.css"> <link rel="stylesheet" href="assets/fa/css/all.css">
<noscript><link rel="stylesheet" href="assets/css/noscript.css"></noscript> <noscript><link rel="stylesheet" href="assets/css/noscript.css"></noscript>
<script>if (location.protocol !== "https:") location.protocol = "https:";</script> <script>if (location.protocol !== "https:") location.protocol = "https:";</script>
<!-- Start Open Web Analytics Tracker --> </head>
<script type="text/javascript"> <body>
//<![CDATA[ <div id="wrapper">
var owa_baseUrl = 'https://analytics.tainton.uk/'; <div id="bg"></div>
var owa_cmds = owa_cmds || []; <div id="overlay"></div>
owa_cmds.push(['setSiteId', '947c16aa1f6a6cbba7adf67a0bcd4daf']); <div id="main">
owa_cmds.push(['trackPageView']); <!-- Header -->
owa_cmds.push(['trackClicks']); <header id="header">
<span class="avatar"><img style="border-radius: 50%;" height="200em" src="https://github.com/luketainton.png"></span>
(function() { <h1>Luke Tainton</h1>
var _owa = document.createElement('script'); _owa.type = 'text/javascript'; _owa.async = true; <p>Computer Networks Student, joining Cisco Systems in September 2020.</p>
owa_baseUrl = ('https:' == document.location.protocol ? window.owa_baseSecUrl || owa_baseUrl.replace(/http:/, 'https:') : owa_baseUrl ); <nav>
_owa.src = owa_baseUrl + 'modules/base/js/owa.tracker-combined-min.js'; <ul>
var _owa_s = document.getElementsByTagName('script')[0]; _owa_s.parentNode.insertBefore(_owa, _owa_s); <li><a href="mailto:luke@tainton.uk" class="fas fa-envelope"><span class="label">Email</span></a></li>
}()); <li><a href="https://github.com/luketainton" class="fab fa-github"><span class="label">GitHub</span></a></li>
//]]> <li><a href="https://keybase.pub/luketainton" class="fab fa-keybase"><span class="label">KBFS</span></a></li>
</script> <li><a href="https://linkedin.com/in/luketainton" class="fab fa-linkedin"><span class="label">LinkedIn</span></a></li>
<!-- End Open Web Analytics Code --> <li><a href="https://fosstodon.org/@luketainton" class="fab fa-mastodon" rel="me"><span class="label">Mastodon</span></a></li>
<li><a href="https://twitter.com/luketainton1" class="fab fa-twitter"><span class="label">Twitter</span></a></li>
</head> </ul>
<body> </nav>
<div id="wrapper"> <p>If you want to send me an encrypted message, please use <a href="https://keybase.io/luketainton">Keybase</a> or my <a href="https://keybase.io/luketainton/pgp_keys.asc">PGP Keys</a>.</p>
<div id="bg"></div> </header>
<div id="overlay"></div> <!-- Footer -->
<div id="main"> <footer id="footer"><span class="copyright">© Luke Tainton, 2020. Hosted by <a href="https://github.com/luketainton/luketainton.github.io">GitHub Pages</a>. Designed by <a href="http://html5up.net/">HTML5 UP</a>.</span></footer>
<!-- Header --> </div>
<header id="header"> </div>
<span class="avatar"><img style="border-radius: 50%;" height="200em" src="https://github.com/luketainton.png"></span> <script>
<h1>Luke Tainton</h1> window.onload = function() { document.body.classList.remove('is-preload'); }
<p>Computer Networks Student, joining Cisco Systems in September 2020.</p> window.ontouchmove = function() { return false; }
<nav> window.onorientationchange = function() { document.body.scrollTop = 0; }
<ul> </script>
<li><a href="mailto:luke@tainton.uk" class="fas fa-envelope"><span class="label">Email</span></a></li> </body>
<li><a href="https://github.com/luketainton" class="fab fa-github"><span class="label">GitHub</span></a></li>
<li><a href="https://keybase.pub/luketainton" class="fab fa-keybase"><span class="label">KBFS</span></a></li>
<li><a href="https://linkedin.com/in/luketainton" class="fab fa-linkedin"><span class="label">LinkedIn</span></a></li>
<li><a href="https://fosstodon.org/@luketainton" class="fab fa-mastodon" rel="me"><span class="label">Mastodon</span></a></li>
<li><a href="https://twitter.com/luketainton1" class="fab fa-twitter"><span class="label">Twitter</span></a></li>
</ul>
</nav>
<p>If you want to send me an encrypted message, please use <a href="https://keybase.io/luketainton">Keybase</a> or my <a href="https://keybase.io/luketainton/pgp_keys.asc">PGP Keys</a>.</p>
</header>
<!-- Footer -->
<footer id="footer"><span class="copyright">© Luke Tainton, 2020. Hosted by GitHub Pages. Designed by <a href="http://html5up.net/">HTML5 UP</a>.</span></footer>
</div>
</div>
<script>
window.onload = function() { document.body.classList.remove('is-preload'); }
window.ontouchmove = function() { return false; }
window.onorientationchange = function() { document.body.scrollTop = 0; }
</script>
</body>
</html> </html>