Files
marcus-web/layouts/partials/analytics.html
T
2024-10-15 00:13:17 +00:00

12 lines
422 B
HTML

<div>There's still time for <div id="stats"></div> of you to escape. <3 </div>
<script>
var r = new XMLHttpRequest();
r.addEventListener('load', function() {
document.querySelector('#stats').innerText = JSON.parse(this.responseText).count
})
r.open('GET', 'https://{{ .Site.Params.goatcounter }}.goatcounter.com/counter/' + encodeURIComponent(location.pathname) + '.json')
r.send()
</script>