b641b3f1f2
--------- Co-authored-by: Cotes Chung <11371340+cotes2020@users.noreply.github.com>
18 lines
529 B
HTML
18 lines
529 B
HTML
<!-- Display GoatCounter pageviews -->
|
|
<script>
|
|
let pv = document.getElementById('pageviews');
|
|
|
|
if (pv !== null) {
|
|
const uri = location.pathname.replace(/\/$/, '');
|
|
const url = `https://{{ site.analytics.goatcounter.id }}.goatcounter.com/counter/${encodeURIComponent(uri)}.json`;
|
|
|
|
fetch(url)
|
|
.then((response) => response.json())
|
|
.then((data) => {
|
|
pv.innerText = new Intl.NumberFormat().format(data.count);
|
|
})
|
|
.catch((error) => {
|
|
pv.innerText = '1';
|
|
});
|
|
}
|
|
</script>
|