From a60428ec8401de5a3e2483834d1903959e947654 Mon Sep 17 00:00:00 2001 From: dr460nf1r3 Date: Fri, 24 Dec 2021 15:24:06 +0100 Subject: [PATCH 1/8] =?UTF-8?q?=F0=9F=93=9D=20Add=20dr460nf1r3.org=20to=20?= =?UTF-8?q?users?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- exampleSite/content/users.md | 1 + 1 file changed, 1 insertion(+) 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). From 00bf51517ea4cd9fd7f3a6a1bbad9bc56d9cfbb4 Mon Sep 17 00:00:00 2001 From: darkrain-nl Date: Sat, 25 Dec 2021 10:28:11 +0100 Subject: [PATCH 2/8] =?UTF-8?q?=F0=9F=90=9B=20Fix=20error=20unclosed=20act?= =?UTF-8?q?ion=20in=20footer.html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- layouts/partials/footer.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 }}

From 7f9b2cbc61ff8b4f0044c8a7f5a9259fc04497ed Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Mon, 27 Dec 2021 08:49:34 +1100 Subject: [PATCH 3/8] =?UTF-8?q?=F0=9F=93=9D=20Update=20changelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22ba5503..3a7146ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +### Fixed + +- Error when building using older Hugo versions ([#65](https://github.com/jpanther/congo/pull/65)) + ## [1.6.0] - 2021-12-21 ### Added From 5c9438e952e8004336b761f572da2a1814dc2141 Mon Sep 17 00:00:00 2001 From: Antoine Soetewey Date: Mon, 27 Dec 2021 12:06:09 +0100 Subject: [PATCH 4/8] Update date.html When following this [workflow](https://bookdown.org/yihui/blogdown/workflow.html), there is an error when serving the site : ``` Launching the server via the command: /Users/antoinesoetewey/Library/Application Support/Hugo/0.82.0/hugo server --bind 127.0.0.1 -p 4321 --themesDir themes -t congo -D -F --navigateToChanged Error: Error building site: failed to render pages: render of "page" failed: execute of template failed: template: _default/single.html:11:11: executing "main" at : error calling partial: execute of template failed: template: partials/article-meta.html:16:36: executing "partials/article-meta.html" at : error calling partial: "/Users/antoinesoetewey/Documents/GitHub/elsaetantoine/themes/congo/layouts/partials/meta/date.html:2:24": execute of template failed: template: partials/meta/date.html:2:24: executing "partials/meta/date.html" at <.Site.Params.article.dateFormat>: invalid value; expected string ``` By adding these parentheses, the site is served without any error. Regards, Antoine --- layouts/partials/meta/date.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }} From 90ab6b2431f1e1969b5fb09737ce22cfde5eb6e2 Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Wed, 29 Dec 2021 18:09:57 +1100 Subject: [PATCH 5/8] =?UTF-8?q?=F0=9F=93=9D=20Update=20changelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a7146ef..9e81f4d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### 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 From 64f36ba19b3aee84e35aa3c8fa303249152534cc Mon Sep 17 00:00:00 2001 From: Rishi Maharaj Date: Wed, 29 Dec 2021 22:33:38 -0800 Subject: [PATCH 6/8] :lipstick: add blogger icon - includes blogger svg icon from font awesome - includes placeholder in config.toml > author.links --- assets/icons/blogger.svg | 1 + config/_default/config.toml | 1 + 2 files changed, 2 insertions(+) create mode 100644 assets/icons/blogger.svg 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" }, From b9e09d409ea48b718b0ff900039c6f7e9a4d5279 Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Fri, 31 Dec 2021 09:05:48 +1100 Subject: [PATCH 7/8] =?UTF-8?q?=F0=9F=93=9D=20Add=20Blogger=20icon=20to=20?= =?UTF-8?q?docs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ exampleSite/content/samples/icons.md | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e81f4d2..e5a01ada 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +### 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)) 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 >}} | From e65645caf8543a85ad0effa9bb7fdb8f02c50b4e Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Fri, 31 Dec 2021 09:09:46 +1100 Subject: [PATCH 8/8] =?UTF-8?q?=F0=9F=94=A8=20Preparing=20release=20v1.6.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 5 ++++- assets/css/compiled/main.css | 2 +- assets/css/main.css | 2 +- package.json | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5a01ada..4eed9191 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ 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)) @@ -207,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/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": {