diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c3550bb --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +## [v1.1](https://git.hadan-it.com/stiebke/hugo-internet-weblog/releases/tag/v1.1) - 2025-01-29 + +* BUGFIXES + * Fix not valid RSS-Feed (#27) + * Eliminate ´s in specific file (#7) +* ENHANCEMENTS + * Configurable statuspage-link in footer (#28) + * Rework Umami Integration (#12) + * Update documentation (#10) + * Rework favicon integration (#5) + * Create demo page repository (#4) diff --git a/README.md b/README.md index a893c33..8c816a8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ The theme features a customizable bio-section and flickr-based photo stream in it's footer, unique layouts for displaying all posts sorted by year, and support for partials to customize style and javascript loaded. -To see more, [check out my blog which is rendered with this theme](https://reaktionsfaehig.net) and see it's [configuration on my Forgejo instance](https://git.hadan-it.com/web/reaktionsfaehig.net). +To see more, [check out a sample site which is rendered with this theme](https://preview.hadan-it.com/hugo-internet-weblog-demo/) and see it's [configuration on my Forgejo instance](https://git.hadan-it.com/stiebke/hugo-internet-weblog-demo). ![internet-weblog showing a Micropost.](https://git.hadan-it.com/stiebke/hugo-internet-weblog/raw/branch/main/images/screenshot.png) @@ -35,7 +35,8 @@ To see more, [check out my blog which is rendered with this theme](https://reakt Inside the folder of your Hugo site run: $ mkdir themes - $ git submodule add https://git.hadan-it.com/web/reaktionsfaehig.net.git themes/internet-weblog + $ git submodule add https://git.hadan-it.com/stiebke/hugo-internet-weblog.git themes/internet-weblog + $ echo "theme = 'internet-weblog'" >> hugo.toml For more information read the official [setup guide](https://gohugo.io/installation/) for Hugo. @@ -170,6 +171,9 @@ If you want to enable a dark appearance, there is limited support for that. Curr | `[params]`- `umamiurl` | `Your Umami-URL`| No. i.e. `https://analytics.example.com/`. Please add the trailing slash at the end. | | `[params]`- `umamisrihash` | `SRI hash` | No. Generate your SRI hash for your complete Umami-URL (incl. script.js). You can do this here: [https://www.srihash.org/](https://www.srihash.org/). | | `[params]`- `umamiid` | `Umami Website ID` | No. Add Your Umami-Website ID to this variable | +| `[params]`- `statuspageenabled` | `true` or `false` | No. If true an all parameters are set a link to your status page is shown in the page_footer. | +| `[params]`- `statuspage` | `Your Statuspage-URL`| No. i.e. `https://status.example.com`. | +| `[params]`- `statuspagename` | `Name your Statuspage` | No. Set a specific name for your statuspage in de page_footer. | Here is an example `hugo.toml`: @@ -198,6 +202,9 @@ SectionPagesMenu = "main" umamiurl = "https://analytics.example.com" umamisrihash = "xyz" umamiid = "xxxxxxxxxxxxxxxxxxx-yyyyyyyyyy-zzzzzzzzzzzzz" + statuspageenabled = true + statuspage = "https://status.example.com/status/preview-demo" + statuspagename = "Statusseite" [taxonomies] tag = "tags" diff --git a/layouts/partials/bio.html b/layouts/partials/bio.html index 775884c..a8a06b3 100644 --- a/layouts/partials/bio.html +++ b/layouts/partials/bio.html @@ -1,2 +1,2 @@ Here you can place a short bio about yourself. Place a `bio.html` file in your -project directory under `layout/partials`. That will override this message. +project directory under `layouts/partials`. That will override this message. diff --git a/layouts/partials/page_footer.html b/layouts/partials/page_footer.html index 3b96ecc..167a501 100644 --- a/layouts/partials/page_footer.html +++ b/layouts/partials/page_footer.html @@ -1,7 +1,7 @@ diff --git a/layouts/partials/page_header.html b/layouts/partials/page_header.html index a8b0300..2a92297 100644 --- a/layouts/partials/page_header.html +++ b/layouts/partials/page_header.html @@ -1,6 +1,6 @@