diff options
-rw-r--r-- | config.toml | 1 | ||||
-rw-r--r-- | content/about.md | 7 | ||||
-rw-r--r-- | content/site/info.md | 4 | ||||
-rw-r--r-- | content/site/updates/removed-plausible.md | 23 | ||||
-rw-r--r-- | layouts/_default/baseof.html | 2 | ||||
-rw-r--r-- | layouts/_default/index.html | 3 |
6 files changed, 29 insertions, 11 deletions
diff --git a/config.toml b/config.toml index ec9cdd9..9410e1d 100644 --- a/config.toml +++ b/config.toml @@ -7,7 +7,6 @@ tagline = "Hello do Michał's weblog!" [params] defaultDescription = "Welcome to my blog!" - plausibleDomain = "michal.sapka.me" [taxonomies] category = 'category' diff --git a/content/about.md b/content/about.md index e944aeb..cfa0144 100644 --- a/content/about.md +++ b/content/about.md @@ -37,13 +37,6 @@ Some causes I support or believe in: {{< causes >}} - -### Privacy policy - -I have some basic statistics on this site, but I don't track you. - -[Statistics are public](https://plausible.io/michal.sapka.me). - ### Inspirations and thank yous I started this blog after reading [Rubenerd](https://rubenerd.com). diff --git a/content/site/info.md b/content/site/info.md index 0ef215e..83ddb76 100644 --- a/content/site/info.md +++ b/content/site/info.md @@ -25,6 +25,10 @@ Money earned due to this website: 0 USD (minus costs) All content on this site is licensed under [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). +## Privacy + +I don't track you, but I have your IP address in my logs. + ## Source Code Source code is open and available on my [VCS hub](https://vcs.sapka.me/michal-sapka-me/log.html) diff --git a/content/site/updates/removed-plausible.md b/content/site/updates/removed-plausible.md new file mode 100644 index 0000000..d5c0f7d --- /dev/null +++ b/content/site/updates/removed-plausible.md @@ -0,0 +1,23 @@ +--- +title: "Removed Plausible analytics" +category: site +abstract: I will know even less about you +date: 2023-11-10T22:18:07+01:00 +draft: false +--- +I have removed Plausible from this site. +I need even more tracking that it provides and not having to pay is always a plus. + +As a replacement I am moving to ploting statics from logs using rrdtool(1). +You can see the live version under [site info](/site/info). +It was fun mini-project, so there will be a guide posted soon and most likely more graphs. +Tinkering with site is its own reward! + +I am also remodeling the site via moving the webpages around. +This is preparation for future structure of this site. +The unfortunate side effect is a mess in RSS feeds, as Hugo assumes webpage URL as the identifier. +When I move a webpage, a new ID is used and the old post may be shown as new. +Sorry! + +I am moving pages category by category, so there won't be many changes in a day, but the entire change will take a few days. + diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index c12ebed..f5836cc 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -35,8 +35,6 @@ <meta name="robots" content="index, follow"> {{ if isset .Params "tags" }}<meta name="keywords" content="{{ with .Params.tags }}{{ delimit . ", " }}{{ end }}">{{end}} -<!-- <script defer data-api="/api/event" data-domain="{{ .Site.Params.PlausibleDomain}}" src="/js/script.js"></script> ---> - <script data-domain="{{ .Site.Params.PlausibleDomain}}" src="https://plausible.io/js/script.js"></script> <link href="https://github.com/michalsapka" rel="me"> <link rel="webmention" href="https://webmention.io/d-s.sh/webmention"> diff --git a/layouts/_default/index.html b/layouts/_default/index.html index 46a7792..a9f87c8 100644 --- a/layouts/_default/index.html +++ b/layouts/_default/index.html @@ -10,8 +10,9 @@ Hey! I'm Michał Sapka, a computer programmer living in Kraków, Poland. This we </article> <nav> - <a href="/site/info/">Site info</a> + <b><a href="/site/info/">Site info</a></b> : you can find site uptates, metrics, statics, and legal thingies here. </nav> +<br><br> {{ end }} |