Skip to content

Commit

Permalink
Add page view counter
Browse files Browse the repository at this point in the history
  • Loading branch information
maikka39 committed Oct 12, 2024
1 parent 479a4d8 commit 8ff3722
Show file tree
Hide file tree
Showing 9 changed files with 69 additions and 4 deletions.
6 changes: 6 additions & 0 deletions config/_default/hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ enableEmoji = true
# Prefix of link to the git commit detail page. GitInfo must be enabled.
gitUrl = "https://github.com/maikka39/Personal-Website/commit/"

# Add domain for GoatCounter to enable
goatCounter = "webstats.maik.dev"

# Show pageviews on posts, writeups, etc.
showPageViews = true

# Set disableReadOtherPosts to true in order to hide the links to other posts.
disableReadOtherPosts = false

Expand Down
2 changes: 1 addition & 1 deletion config/production/hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ baseURL = "https://maik.dev/"

[services]
[services.googleAnalytics]
id = "UA-136337666-1"
id = "UA-136337666-1"
2 changes: 2 additions & 0 deletions content/portfolio/learn-to-program.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ skills = [
This website was created for a school assignment. It was created with HTML and CSS only and no frameworks were used.

[Github](https://github.com/maikka39/Learn-to-Program)

[Live](https://maikka39.github.io/Learn-to-Program/)
5 changes: 4 additions & 1 deletion themes/maik-blog/archetypes/default.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
+++
author = "Maik de Kruif"
title = "{{ replace .Name "-" " " | title }}"
subtitle = ""
# showPageViews = false
date = {{ .Date }}
description = ""
images = []
cover = "img/writeups/google-ctf/2021/beginners-quest/10/cover.png"
tags = [
"untagged",
]
categories = [
"uncategorized",
]
# aliases = []
+++
4 changes: 4 additions & 0 deletions themes/maik-blog/i18n/en.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,7 @@ other = "Table of Contents"
[wordCount]
one = "One Word"
other = "{{ .Count }} Words"

[post]
pageViews = "Views"
unknownViews = "Unknown"
10 changes: 8 additions & 2 deletions themes/maik-blog/layouts/partials/javascript.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{{- if .Site.Config.Services.GoogleAnalytics.ID }}
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id={{ .Site.Config.Services.GoogleAnalytics.ID }}"></script>
<script>
<script async>
window.dataLayer = window.dataLayer || [];

function gtag() {
Expand All @@ -24,4 +24,10 @@
{{- if gt (len $val) 0 }}
<script src="{{ $val }}"></script>
{{- end }}
{{- end }}
{{- end }}

{{- if .Site.Params.goatCounter }}
<script data-goatcounter="https://{{ .Site.Params.goatCounter }}/count"
data-goatcounter-settings='{"path": "{{ .RelPermalink }}"}'
async src="//gc.zgo.at/count.js"></script>
{{- end}}
16 changes: 16 additions & 0 deletions themes/maik-blog/layouts/partials/page_views.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{{- if .Site.Params.goatCounter }}
<span id="{{ .File.UniqueID }}" title="{{ i18n "post.pageViews" }}">{{ i18n "post.unknownViews" }}</span>
<script async>
let url =
"https://{{ .Site.Params.goatCounter }}/counter/" +
encodeURIComponent({{ .RelPermalink }}.replace(/(\/)?$/, "")) +
".json";

fetch(url)
.then(res => res.json())
.then(data => data.count)
.then(count => {
document.getElementById("{{ .File.UniqueID }}").innerText = count + " " + {{ i18n "post.pageViews" }};
});
</script>
{{- end}}
14 changes: 14 additions & 0 deletions themes/maik-blog/layouts/posts/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,20 @@ <h1 class="post-title">
{{ i18n "wordCount" .Page.WordCount }}
</p>

{{- if and (default true .Params.showPageViews) (default true .Site.Params.showPageViews) }}
{{- if .Site.Params.goatCounter }}
<p>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-activity">
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path>
<circle cx="12" cy="12" r="3"></circle>
</svg>
{{- partial "page_views.html" . -}}
</p>
{{- end }}
{{- end }}

<p>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
Expand Down
14 changes: 14 additions & 0 deletions themes/maik-blog/layouts/writeups/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,20 @@ <h1 class="post-title">
{{ i18n "wordCount" .Page.WordCount }}
</p>

{{- if and (default true .Params.showPageViews) (default true .Site.Params.showPageViews) }}
{{- if .Site.Params.goatCounter }}
<p>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-activity">
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path>
<circle cx="12" cy="12" r="3"></circle>
</svg>
{{- partial "page_views.html" . -}}
</p>
{{- end }}
{{- end }}

<p>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
Expand Down

0 comments on commit 8ff3722

Please sign in to comment.