diff --git a/CHANGELOG.md b/CHANGELOG.md index 22ba5503..4eed9191 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [1.6.1] - 2021-12-31 + +### Added + +- Icon for Blogger ([#71](https://github.com/jpanther/congo/pull/71)) + +### Fixed + +- Error when building using older Hugo versions ([#65](https://github.com/jpanther/congo/pull/65)) +- Error when serving sites using blogdown ([#66](https://github.com/jpanther/congo/pull/66)) + ## [1.6.0] - 2021-12-21 ### Added @@ -198,7 +209,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Advanced customisation using simple Tailwind colour definitions and styles - Fully documented -[unreleased]: https://github.com/jpanther/congo/compare/v1.6.0...HEAD +[unreleased]: https://github.com/jpanther/congo/compare/v1.6.1...HEAD +[1.6.1]: https://github.com/jpanther/congo/compare/v1.6.0...v1.6.1 [1.6.0]: https://github.com/jpanther/congo/compare/v1.5.3...v1.6.0 [1.5.3]: https://github.com/jpanther/congo/compare/v1.5.2...v1.5.3 [1.5.2]: https://github.com/jpanther/Congo/compare/v1.5.1...v1.5.2 diff --git a/assets/css/compiled/main.css b/assets/css/compiled/main.css index a47d9144..a877778f 100644 --- a/assets/css/compiled/main.css +++ b/assets/css/compiled/main.css @@ -1,4 +1,4 @@ -/*! Congo v1.6.0 | MIT License | https://github.com/jpanther/congo */ +/*! Congo v1.6.1 | MIT License | https://github.com/jpanther/congo */ /*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com */ diff --git a/assets/css/main.css b/assets/css/main.css index 3a07f5c6..72503076 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -1,4 +1,4 @@ -/*! Congo v1.6.0 | MIT License | https://github.com/jpanther/congo */ +/*! Congo v1.6.1 | MIT License | https://github.com/jpanther/congo */ @tailwind base; @tailwind components; diff --git a/assets/icons/blogger.svg b/assets/icons/blogger.svg new file mode 100644 index 00000000..d9bf80c5 --- /dev/null +++ b/assets/icons/blogger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/config/_default/config.toml b/config/_default/config.toml index dc616691..034eae30 100644 --- a/config/_default/config.toml +++ b/config/_default/config.toml @@ -23,6 +23,7 @@ summaryLength = 0 # { link = "https://link-to-some-website.com/" }, # { amazon = "https://www.amazon.com/hz/wishlist/ls/wishlist-id" }, # { apple = "https://www.apple.com" }, + # { blogger = "https://username.blogspot.com/" }, # { codepen = "https://codepen.io/username" }, # { dev = "https://dev.to/username" }, # { discord = "https://discord.gg/invitecode" }, diff --git a/exampleSite/content/samples/icons.md b/exampleSite/content/samples/icons.md index 66c4edc4..ffa7c128 100644 --- a/exampleSite/content/samples/icons.md +++ b/exampleSite/content/samples/icons.md @@ -17,6 +17,7 @@ The full list of built-in icons and their corresponding names can referenced bel | -------------------- | --------------------------------- | | amazon | {{< icon amazon >}} | | apple | {{< icon apple >}} | +| blogger | {{< icon blogger >}} | | codepen | {{< icon codepen >}} | | dev | {{< icon dev >}} | | dribbble | {{< icon dribbble >}} | diff --git a/exampleSite/content/users.md b/exampleSite/content/users.md index 82f53918..dc509e34 100644 --- a/exampleSite/content/users.md +++ b/exampleSite/content/users.md @@ -23,5 +23,6 @@ Real websites that are built with Congo. | [theophile-roos.fr](https://theophile-roos.fr) | Personal site | | [antoinesoetewey.com](https://antoinesoetewey.com/) | Personal site | | [leif.io](https://leif.io/) | Personal site and Tech blog | +| [dr460nf1r3.org](https://dr460nf1r3.org/) | Personal site and Blog | **Congo user?** To add your site to this list, [submit a pull request](https://github.com/jpanther/congo/blob/dev/exampleSite/content/users.md). diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 68148bea..fcf0aeef 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -32,8 +32,7 @@ {{ if .Site.Params.attribution | default true }}
{{ $hugo := printf `Hugo` - }} + href="https://gohugo.io/" target="_blank" rel="noopener noreferrer">Hugo` }} {{ $congo := printf `Congo` }} {{ i18n "footer.powered_by" (dict "Hugo" $hugo "Congo" $congo) | safeHTML }}
diff --git a/layouts/partials/meta/date.html b/layouts/partials/meta/date.html index 9d75ac62..92c2675b 100644 --- a/layouts/partials/meta/date.html +++ b/layouts/partials/meta/date.html @@ -1,10 +1,10 @@ {{ if .Params.showDateUpdated | default (.Site.Params.article.showDateUpdated | default false) }} (Updated: ) {{ end }} diff --git a/package.json b/package.json index 3b3db581..fc310567 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hugo-congo-theme", - "version": "1.6.0", + "version": "1.6.1", "description": "Congo theme for Hugo", "main": "index.js", "scripts": {