From b5f3debebb570a7a737427cac1c7844ac9aade8c Mon Sep 17 00:00:00 2001 From: Aditya Telange <21258296+adityatelange@users.noreply.github.com> Date: Mon, 30 Nov 2020 12:52:21 +0530 Subject: [PATCH 001/428] footer: go-to-top: fix overlap with next_page button close: #91 --- assets/css/footer.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/assets/css/footer.css b/assets/css/footer.css index f0a1ffc..87dc7d4 100644 --- a/assets/css/footer.css +++ b/assets/css/footer.css @@ -51,3 +51,9 @@ .top-link:focus { outline: 0 } + +@media screen and (max-width:800px) { + .list .top-link { + transform: translateY(-5rem) + } +} From 29797a7464b63147c25be21ec99839012d30ca5d Mon Sep 17 00:00:00 2001 From: Aditya Telange <21258296+adityatelange@users.noreply.github.com> Date: Mon, 30 Nov 2020 20:46:30 +0530 Subject: [PATCH 002/428] social-icons: add kofi icon #29 * thanks to https://iconify.design/icon-sets/simple-icons/kofi.html and Simple Icons Collaborators * License CC0 1.0 * edited to fit dual-tone theme --- layouts/partials/svg.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/layouts/partials/svg.html b/layouts/partials/svg.html index 0d4d0c0..ac5bd99 100644 --- a/layouts/partials/svg.html +++ b/layouts/partials/svg.html @@ -178,6 +178,13 @@ +{{- else if (eq $icon_name "kofi") -}} + + + {{- else if (eq $icon_name "lastfm") -}} Date: Tue, 1 Dec 2020 08:36:08 +0530 Subject: [PATCH 003/428] header: fix menu items overflow instead of horizontal scroll #99 - broken by https://git.io/JIfLS --- assets/css/header.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/assets/css/header.css b/assets/css/header.css index e4ec64e..c5fcf9d 100644 --- a/assets/css/header.css +++ b/assets/css/header.css @@ -16,6 +16,9 @@ .menu { display: flex; margin: auto var(--gap); +} + +.logo { flex-wrap: inherit } From 7a0e742def494eee80a9b6fcd069f92b0ce5abac Mon Sep 17 00:00:00 2001 From: Aditya Telange <21258296+adityatelange@users.noreply.github.com> Date: Tue, 1 Dec 2020 13:58:16 +0530 Subject: [PATCH 004/428] header: improve menu location indicator - fix non-highlight on subdirs - menu url need not have leading or trailing slashes - fix non-highlight with multilingual config --- layouts/partials/header.html | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 9074b13..6579922 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -109,12 +109,11 @@ {{- $currentPage := . }} {{- end }} + {{- if .Site.Params.ShowPostNavLinks }} + {{- $pages := where site.RegularPages "Type" "in" site.Params.mainSections }} + {{- if and (gt (len $pages) 1) (in $pages . ) }} + + {{- end }} + {{- end }} {{- if (and .Site.Params.ShowShareButtons (ne .Params.disableShare true) ) }} {{- partial "share_icons.html" . }} {{- end }} From 84e208f98d6ff664da5550283e900df2b3144be5 Mon Sep 17 00:00:00 2001 From: Coderslang Master Date: Fri, 29 Jan 2021 19:55:07 +0200 Subject: [PATCH 117/428] Fix missing reciprocal and self-reference hreflang (#211) ref: - https://help.ahrefs.com/en/articles/2631143-missing-reciprocal-hreflang-no-return-tag-error-in-site-audit - https://help.ahrefs.com/en/articles/2754344-what-does-the-self-referencing-hreflang-annotation-missing-issue-in-site-audit-mean --- layouts/partials/head.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/head.html b/layouts/partials/head.html index e733908..5ba46fe 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -71,7 +71,7 @@ {{- range .AlternativeOutputFormats -}} {{ end -}} -{{- range .Translations -}} +{{- range .AllTranslations -}} {{ end }} {{- partial "extend_head.html" . -}} From cc4fb703367f3b35c962c708115c708cc580763b Mon Sep 17 00:00:00 2001 From: Aditya Telange <21258296+adityatelange@users.noreply.github.com> Date: Thu, 28 Jan 2021 20:33:01 +0530 Subject: [PATCH 118/428] rm translateX from post-title in single --- assets/css/post-single.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/assets/css/post-single.css b/assets/css/post-single.css index c37d125..017a3e9 100644 --- a/assets/css/post-single.css +++ b/assets/css/post-single.css @@ -4,8 +4,7 @@ .post-title { margin-bottom: 2px; - font-size: 40px; - transform: translateX(-2px) + font-size: 40px } .post-description { From a7e0b2f5a995e4575de567229dec59640596f158 Mon Sep 17 00:00:00 2001 From: Aditya Telange <21258296+adityatelange@users.noreply.github.com> Date: Thu, 28 Jan 2021 20:35:45 +0530 Subject: [PATCH 119/428] add check to display post-description in single --- layouts/_default/single.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/layouts/_default/single.html b/layouts/_default/single.html index b6298ac..55eb38d 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -6,9 +6,11 @@ {{ .Title }} {{- if .Draft }}
  [draft]
{{- end }} + {{- if .Description }}
{{ .Description }}
+ {{- end }} {{- if not (.Param "hideMeta") }}