12 lines
422 B
HTML
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>
|
|
|