From 5e172bca28a9b3d1ff5f50f1dfed6c38d43a766c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jan 2022 11:05:25 +0000 Subject: [PATCH 01/48] Bump release-drafter/release-drafter from 5.16.1 to 5.17.5 (#501) Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 5.16.1 to 5.17.5. - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](https://github.com/release-drafter/release-drafter/compare/v5.16.1...v5.17.5) --- updated-dependencies: - dependency-name: release-drafter/release-drafter dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/draft-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index e39c254..1a11a9b 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -10,6 +10,6 @@ jobs: runs-on: ubuntu-latest steps: # Create/Update release draft - - uses: release-drafter/release-drafter@v5.16.1 + - uses: release-drafter/release-drafter@v5.17.5 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From d0a6eb4b2847af009c44006cde853b8153094fa6 Mon Sep 17 00:00:00 2001 From: Jan Date: Tue, 18 Jan 2022 04:57:20 +0100 Subject: [PATCH 02/48] Update experience-info.html (#502) added .html to multiple-positions --- layouts/partials/sections/experiences/experience-info.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/sections/experiences/experience-info.html b/layouts/partials/sections/experiences/experience-info.html index d49932c..1d068a9 100644 --- a/layouts/partials/sections/experiences/experience-info.html +++ b/layouts/partials/sections/experiences/experience-info.html @@ -1,5 +1,5 @@ {{ if gt (len .positions) 1 }} - {{ partial "sections/experiences/multiple-positions" . }} + {{ partial "sections/experiences/multiple-positions.html" . }} {{ else }} {{ partial "sections/experiences/single-position.html" . }} {{ end }} From 4ebbb523a5a8352a01a43c72e2bfe25c3649a9b4 Mon Sep 17 00:00:00 2001 From: Jan Date: Wed, 19 Jan 2022 19:32:28 +0100 Subject: [PATCH 03/48] fix: navigation with hidden title (#505) * Update accomplishments.html fix display property when hidden * Update achievements.html fixed display property when hidden * Update education-alt.html fixed display property when hidden * Update education.html fixed display property when hidden * Update experiences.html fixed display property when hidden * Update projects.html fixed display property when hidden * Update recent-posts.html fixed display property when hidden * Update skills.html fixed display property when hidden --- layouts/partials/sections/accomplishments.html | 7 +++++-- layouts/partials/sections/achievements.html | 5 ++++- layouts/partials/sections/education-alt.html | 12 ++++++++---- layouts/partials/sections/education.html | 9 ++++++--- layouts/partials/sections/experiences.html | 8 +++++--- layouts/partials/sections/projects.html | 6 +++++- layouts/partials/sections/recent-posts.html | 5 ++++- layouts/partials/sections/skills.html | 5 ++++- 8 files changed, 41 insertions(+), 16 deletions(-) diff --git a/layouts/partials/sections/accomplishments.html b/layouts/partials/sections/accomplishments.html index 8dee8a6..77b8d99 100644 --- a/layouts/partials/sections/accomplishments.html +++ b/layouts/partials/sections/accomplishments.html @@ -6,9 +6,12 @@
{{ if not (.section.hideTitle) }}

- {{ .section.name }}

+ {{ .section.name }} + {{ else }} +

+ {{ .section.name }}

{{ end }} - +
{{ range .accomplishments }} diff --git a/layouts/partials/sections/achievements.html b/layouts/partials/sections/achievements.html index 927fdc8..23957e7 100644 --- a/layouts/partials/sections/achievements.html +++ b/layouts/partials/sections/achievements.html @@ -6,7 +6,10 @@
{{ if not (.section.hideTitle) }}

- {{ .section.name }}

+ {{ .section.name }} + {{ else }} +

+ {{ .section.name }}

{{ end }}
diff --git a/layouts/partials/sections/education.html b/layouts/partials/sections/education.html index ea79579..a547cb2 100644 --- a/layouts/partials/sections/education.html +++ b/layouts/partials/sections/education.html @@ -4,10 +4,13 @@ {{ end }}
- {{ if not (.section.hideTitle) }} + {{ if not (.section.hideTitle) }}

{{ .section.name }}

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

+ {{ .section.name }}

+ {{ end }}
@@ -107,4 +110,4 @@
-
\ No newline at end of file +
diff --git a/layouts/partials/sections/experiences.html b/layouts/partials/sections/experiences.html index e7e2508..eafe926 100644 --- a/layouts/partials/sections/experiences.html +++ b/layouts/partials/sections/experiences.html @@ -6,8 +6,10 @@
{{ if not (.section.hideTitle) }}

- {{ .section.name }} -

+ {{ .section.name }} + {{ else }} +

+ {{ .section.name }}

{{ end }}
@@ -29,4 +31,4 @@ {{ end }} {{ end }}
-
\ No newline at end of file +
diff --git a/layouts/partials/sections/projects.html b/layouts/partials/sections/projects.html index dd3ec39..c658e2c 100644 --- a/layouts/partials/sections/projects.html +++ b/layouts/partials/sections/projects.html @@ -5,7 +5,11 @@
{{ if not (.section.hideTitle) }} -

{{ .section.name }}

+

+ {{ .section.name }}

+ {{ else }} +

+ {{ .section.name }}

{{ end }}
diff --git a/layouts/partials/sections/recent-posts.html b/layouts/partials/sections/recent-posts.html index 7bc1ea9..d68a0d9 100644 --- a/layouts/partials/sections/recent-posts.html +++ b/layouts/partials/sections/recent-posts.html @@ -12,7 +12,10 @@
{{ if not (.section.hideTitle) }}

- {{ .section.name }}

+ {{ .section.name }} + {{ else }} +

+ {{ .section.name }}

{{ end }}
diff --git a/layouts/partials/sections/skills.html b/layouts/partials/sections/skills.html index 3a355a4..ab837dc 100644 --- a/layouts/partials/sections/skills.html +++ b/layouts/partials/sections/skills.html @@ -6,7 +6,10 @@
{{ if not (.section.hideTitle) }}

- {{ .section.name }}

+ {{ .section.name }} + {{ else }} +

+ {{ .section.name }}

{{ end }}
From 99a131fe438870d16891623bda3634befa372d70 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Jan 2022 11:08:03 +0000 Subject: [PATCH 04/48] Bump release-drafter/release-drafter from 5.17.5 to 5.17.6 (#507) Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 5.17.5 to 5.17.6. - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](https://github.com/release-drafter/release-drafter/compare/v5.17.5...v5.17.6) --- updated-dependencies: - dependency-name: release-drafter/release-drafter dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/draft-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index 1a11a9b..a6ba4e2 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -10,6 +10,6 @@ jobs: runs-on: ubuntu-latest steps: # Create/Update release draft - - uses: release-drafter/release-drafter@v5.17.5 + - uses: release-drafter/release-drafter@v5.17.6 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 91f6b69fa78499a9583acbdb9c09de2bf646213f Mon Sep 17 00:00:00 2001 From: Emruz Hossain Date: Fri, 21 Jan 2022 11:27:46 +0600 Subject: [PATCH 05/48] Fix navbar missing an item in the dropdown (#509) Signed-off-by: Emruz Hossain --- layouts/partials/navigators/navbar.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/navigators/navbar.html b/layouts/partials/navigators/navbar.html index 33552a4..ab4f3cb 100644 --- a/layouts/partials/navigators/navbar.html +++ b/layouts/partials/navigators/navbar.html @@ -87,7 +87,7 @@ {{ end }} {{- end }} + {{ if $customMenusEnabled }} + {{ range $customMenus }} + {{ if .showOnFooter }} + + {{ end }} + {{ end }} + {{ end }} {{ end }}
From bfa1e4c2b3fb9ee2181d9b13841f057a1ebfd565 Mon Sep 17 00:00:00 2001 From: Jan Date: Mon, 31 Jan 2022 18:05:05 +0100 Subject: [PATCH 11/48] feat: configurable custom navbar items (#514) * feat: configurable custom navbar items The customMenu item from `data//site.yaml` will only appear if its property `showOnNavbar` is `true`. Example: ``` customMenus: - name: Imprint url: posts/imprint showOnNavbar: false ``` * fix: change logic from to Co-authored-by: stueja Co-authored-by: Emruz Hossain --- layouts/partials/navigators/navbar.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/layouts/partials/navigators/navbar.html b/layouts/partials/navigators/navbar.html index ab4f3cb..7ed0bbd 100644 --- a/layouts/partials/navigators/navbar.html +++ b/layouts/partials/navigators/navbar.html @@ -115,9 +115,11 @@ {{ end }} {{ range $customMenus }} - + {{ if (not .hideFromNavbar) }} + + {{ end }} {{ end }} {{ if .IsTranslated }} {{ partial "navigators/lang-selector.html" . }} From 42a0e5100a41a2afb7acefc4ad445aff303f98af Mon Sep 17 00:00:00 2001 From: James Ray Date: Mon, 31 Jan 2022 12:07:41 -0500 Subject: [PATCH 12/48] add calculation to line up lines (#516) Co-authored-by: Emruz Hossain --- static/css/sections/experiences.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/sections/experiences.css b/static/css/sections/experiences.css index e668e4b..30d09a1 100644 --- a/static/css/sections/experiences.css +++ b/static/css/sections/experiences.css @@ -81,7 +81,7 @@ } .top-right { - left: 50%; + left: calc(50% - 3px); top: -50%; } From d74549f870dec98c3db0f58e59a2b53dc4fccc92 Mon Sep 17 00:00:00 2001 From: Jan Date: Mon, 31 Jan 2022 18:09:31 +0100 Subject: [PATCH 13/48] feat: id for footer (#517) Added id="footer" just in case someone wants to link there via custom menus or href="#footer". Co-authored-by: stueja Co-authored-by: Emruz Hossain --- layouts/partials/footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 1e71ffe..8503784 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -64,7 +64,7 @@ {{ end }} {{ $hugoLogo = $hugoLogo.RelPermalink}} -