pugixml/_includes/footer.html
Arseny Kapoulkine 9e13710462 Remove GA
There's no point recording this as the analytics is not actionable.
2023-01-23 13:26:52 -08:00

29 lines
870 B
HTML

</section>
<footer>
<p>Maintained by <a href="https://github.com/zeux">Arseny Kapoulkine</a></p>
<p><small>Hosted on GitHub &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</footer>
</div>
<script type="text/javascript">
// scale.fix.js
var metas = document.getElementsByTagName('meta');
var i;
if (navigator.userAgent.match(/iPhone/i)) {
for (i=0; i<metas.length; i++) {
if (metas[i].name == "viewport") {
metas[i].content = "width=device-width, minimum-scale=1.0, maximum-scale=1.0";
}
}
document.addEventListener("gesturestart", gestureStart, false);
}
function gestureStart() {
for (i=0; i<metas.length; i++) {
if (metas[i].name == "viewport") {
metas[i].content = "width=device-width, minimum-scale=0.25, maximum-scale=1.6";
}
}
}
</script>
</body>
</html>