diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml index afdea31..708615d 100644 --- a/config/_default/hugo.toml +++ b/config/_default/hugo.toml @@ -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 diff --git a/config/production/hugo.toml b/config/production/hugo.toml index 856a307..bfd6738 100644 --- a/config/production/hugo.toml +++ b/config/production/hugo.toml @@ -2,4 +2,4 @@ baseURL = "https://maik.dev/" [services] [services.googleAnalytics] - id = "UA-136337666-1" \ No newline at end of file + id = "UA-136337666-1" diff --git a/content/portfolio/learn-to-program.md b/content/portfolio/learn-to-program.md index 543d293..8156ab0 100644 --- a/content/portfolio/learn-to-program.md +++ b/content/portfolio/learn-to-program.md @@ -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/) diff --git a/themes/maik-blog/archetypes/default.md b/themes/maik-blog/archetypes/default.md index 7201aca..99f75e8 100644 --- a/themes/maik-blog/archetypes/default.md +++ b/themes/maik-blog/archetypes/default.md @@ -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 = [] +++ diff --git a/themes/maik-blog/i18n/en.toml b/themes/maik-blog/i18n/en.toml index 467981c..de9c0ad 100644 --- a/themes/maik-blog/i18n/en.toml +++ b/themes/maik-blog/i18n/en.toml @@ -34,3 +34,7 @@ other = "Table of Contents" [wordCount] one = "One Word" other = "{{ .Count }} Words" + +[post] +pageViews = "Views" +unknownViews = "Unknown" \ No newline at end of file diff --git a/themes/maik-blog/layouts/partials/javascript.html b/themes/maik-blog/layouts/partials/javascript.html index d9bacbe..47c7aa3 100644 --- a/themes/maik-blog/layouts/partials/javascript.html +++ b/themes/maik-blog/layouts/partials/javascript.html @@ -8,7 +8,7 @@ {{- if .Site.Config.Services.GoogleAnalytics.ID }} - {{- end }} -{{- end }} \ No newline at end of file +{{- end }} + +{{- if .Site.Params.goatCounter }} + +{{- end}} \ No newline at end of file diff --git a/themes/maik-blog/layouts/partials/page_views.html b/themes/maik-blog/layouts/partials/page_views.html new file mode 100644 index 0000000..8eb1b7b --- /dev/null +++ b/themes/maik-blog/layouts/partials/page_views.html @@ -0,0 +1,16 @@ +{{- if .Site.Params.goatCounter }} +{{ i18n "post.unknownViews" }} + +{{- end}} diff --git a/themes/maik-blog/layouts/posts/single.html b/themes/maik-blog/layouts/posts/single.html index 6843119..70bbc79 100644 --- a/themes/maik-blog/layouts/posts/single.html +++ b/themes/maik-blog/layouts/posts/single.html @@ -77,6 +77,20 @@ {{ i18n "wordCount" .Page.WordCount }}

+ {{- if and (default true .Params.showPageViews) (default true .Site.Params.showPageViews) }} + {{- if .Site.Params.goatCounter }} +

+ + + + + {{- partial "page_views.html" . -}} +

+ {{- end }} + {{- end }} +

+ {{- if and (default true .Params.showPageViews) (default true .Site.Params.showPageViews) }} + {{- if .Site.Params.goatCounter }} +

+ + + + + {{- partial "page_views.html" . -}} +

+ {{- end }} + {{- end }} +