From 11bddc36a221034df656cf2b0f4b45f314a0551c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bernat=20Borr=C3=A0s=20Civil?=
<70479573+BernatBC@users.noreply.github.com>
Date: Mon, 12 Feb 2024 08:26:12 +0100
Subject: [PATCH 01/81] Add company and school logos (#882)
* Add education logo
* Fix width
* Update css
* Add logos to company
* Add multiple positions
* Update Styling
* Strenghten poistion title
* Improve timeline
* Fix missing curly braces
* Fix curly braces
* Add space
* Add space between position and date
* Make single and multiple experiences more consistent
* Remove single-position layout
* Remove duplicated comment
---
assets/styles/components/images.scss | 10 ++++
assets/styles/sections/experiences.scss | 10 ++++
layouts/partials/sections/education-alt.html | 12 +++++
layouts/partials/sections/education.html | 13 ++++++
layouts/partials/sections/experiences.html | 4 +-
.../sections/experiences/experience-info.html | 5 --
.../experiences/multiple-positions.html | 29 ------------
.../sections/experiences/positions.html | 46 +++++++++++++++++++
.../sections/experiences/single-position.html | 23 ----------
9 files changed, 93 insertions(+), 59 deletions(-)
delete mode 100644 layouts/partials/sections/experiences/experience-info.html
delete mode 100644 layouts/partials/sections/experiences/multiple-positions.html
create mode 100644 layouts/partials/sections/experiences/positions.html
delete mode 100644 layouts/partials/sections/experiences/single-position.html
diff --git a/assets/styles/components/images.scss b/assets/styles/components/images.scss
index d546d7b..146ea8b 100644
--- a/assets/styles/components/images.scss
+++ b/assets/styles/components/images.scss
@@ -46,3 +46,13 @@ html[data-theme='dark'] {
.svg-inverted {
filter: invert(1);
}
+
+.logo-holder {
+ height: 64px;
+ margin-bottom: 1em;
+}
+
+.company-logo {
+ max-height: 100%;
+ width: auto;
+}
\ No newline at end of file
diff --git a/assets/styles/sections/experiences.scss b/assets/styles/sections/experiences.scss
index d6f6085..aae541b 100644
--- a/assets/styles/sections/experiences.scss
+++ b/assets/styles/sections/experiences.scss
@@ -92,6 +92,16 @@
}
}
+ .company-heading {
+ h5 {
+ display: inline;
+ margin-right: 0.25em;
+ }
+ p {
+ display: inline;
+ }
+ }
+
@include media('<=medium') {
.container {
max-width: 100%;
diff --git a/layouts/partials/sections/education-alt.html b/layouts/partials/sections/education-alt.html
index b6996df..827194b 100644
--- a/layouts/partials/sections/education-alt.html
+++ b/layouts/partials/sections/education-alt.html
@@ -31,6 +31,18 @@
+
+ {{ $logoImage:= resources.Get .institution.logo}}
+ {{ if $logoImage }}
+ {{/* svg don't support "Fit" operation */}}
+ {{ if ne $logoImage.MediaType.SubType "svg" }}
+ {{ $logoImage = $logoImage.Fit "300x300" }}
+ {{ end }}
+
+ 
+
+ {{ end }}
+
{{ if .institution.url }}
diff --git a/layouts/partials/sections/education.html b/layouts/partials/sections/education.html
index 6a7fb74..39ef52a 100644
--- a/layouts/partials/sections/education.html
+++ b/layouts/partials/sections/education.html
@@ -31,6 +31,19 @@
|
+
+ {{ $logoImage:= resources.Get .institution.logo}}
+ {{ if $logoImage }}
+ {{/* svg don't support "Fit" operation */}}
+ {{ if ne $logoImage.MediaType.SubType "svg" }}
+ {{ $logoImage = $logoImage.Fit "300x300" }}
+ {{ end }}
+
+
+ 
+
+ {{ end }}
+
{{ if .institution.url }}
diff --git a/layouts/partials/sections/experiences.html b/layouts/partials/sections/experiences.html
index eafe926..b1cd34f 100644
--- a/layouts/partials/sections/experiences.html
+++ b/layouts/partials/sections/experiences.html
@@ -18,11 +18,11 @@
{{ if eq (mod $index 2) 0 }}
{{ partial "sections/experiences/vertical-line.html" $index }}
- {{ partial "sections/experiences/experience-info.html" $experience }}
+ {{ partial "sections/experiences/positions.html" $experience }}
{{else}}
- {{ partial "sections/experiences/experience-info.html" $experience }}
+ {{ partial "sections/experiences/positions.html" $experience }}
{{ partial "sections/experiences/vertical-line.html" $index }}
{{ end }}
diff --git a/layouts/partials/sections/experiences/experience-info.html b/layouts/partials/sections/experiences/experience-info.html
deleted file mode 100644
index 1d068a9..0000000
--- a/layouts/partials/sections/experiences/experience-info.html
+++ /dev/null
@@ -1,5 +0,0 @@
-{{ if gt (len .positions) 1 }}
- {{ partial "sections/experiences/multiple-positions.html" . }}
-{{ else }}
- {{ partial "sections/experiences/single-position.html" . }}
-{{ end }}
diff --git a/layouts/partials/sections/experiences/multiple-positions.html b/layouts/partials/sections/experiences/multiple-positions.html
deleted file mode 100644
index 1c77f53..0000000
--- a/layouts/partials/sections/experiences/multiple-positions.html
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
- {{ if .company.url }}{{ .company.name }}{{ else }}{{ .company.name }}{{ end }}
-
-
- {{ $oldestPosition := index (last 1 .positions) 0}}
- {{ $mostRecentPosition := index (first 1 .positions) 0}}
-
- {{ $oldestPosition.start }} - {{ if $mostRecentPosition.end }}{{ $mostRecentPosition.end }}{{ else }}{{ i18n "present" }}{{ end }},
- {{ .company.location }}
-
-
- {{ .company.overview | markdownify }}
-
-
-
- {{ range $index,$position:= .positions }}
- {{ $position.designation }}
- {{ $position.start }} - {{if $position.end }} {{ $position.end }} {{else}} {{ i18n "present" }} {{end}}
-
-
- {{ range $position.responsibilities }}
- - {{ . | markdownify }}
- {{ end }}
-
- {{ end }}
-
-
diff --git a/layouts/partials/sections/experiences/positions.html b/layouts/partials/sections/experiences/positions.html
new file mode 100644
index 0000000..514d449
--- /dev/null
+++ b/layouts/partials/sections/experiences/positions.html
@@ -0,0 +1,46 @@
+
+
+ {{ $logoImage:= resources.Get .company.logo}}
+ {{ if $logoImage }}
+ {{/* svg don't support "Fit" operation */}}
+ {{ if ne $logoImage.MediaType.SubType "svg" }}
+ {{ $logoImage = $logoImage.Fit "300x300" }}
+ {{ end }}
+
+ 
+
+ {{ end }}
+
+ {{ $oldestPosition := index (last 1 .positions) 0}}
+ {{ $mostRecentPosition := index (first 1 .positions) 0}}
+
+ {{ if .company.url }}{{ .company.name }}{{ else }}{{ .company.name }}{{ end }}
+
+ {{ $oldestPosition.start }} - {{ if $mostRecentPosition.end }}{{ $mostRecentPosition.end }}{{ else }}{{ i18n "present" }}{{ end }}
+
+
+
+ {{ .company.location }}
+
+
+ {{ .company.overview | markdownify }}
+
+
+
+ {{ range $index,$position:= .positions }}
+
+ {{ $position.designation }}
+ {{ $position.start }} - {{if $position.end }} {{ $position.end }} {{else}} {{ i18n "present" }} {{end}}
+
+
+ {{ if $position.responsibilities }}
+ {{ i18n "responsibilities" }}
+
+ {{ range $position.responsibilities }}
+ - {{ . | markdownify }}
+ {{ end }}
+
+ {{ end }}
+ {{ end }}
+
+
diff --git a/layouts/partials/sections/experiences/single-position.html b/layouts/partials/sections/experiences/single-position.html
deleted file mode 100644
index 4b0e500..0000000
--- a/layouts/partials/sections/experiences/single-position.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
- {{ $position:= index .positions 0 }}
-
- {{ $position.designation }}
- {{ if .company.url }}{{ .company.name }}{{ else }}{{ .company.name }}{{ end }}
-
- {{ $position.start }} - {{ if $position.end }}{{ $position.end }}{{ else }}{{ i18n "present" }}{{ end }},
- {{ .company.location }}
-
-
-
- {{ .company.overview | markdownify }}
-
- {{ if $position.responsibilities }}
- {{ i18n "responsibilities" }}
-
- {{ range $position.responsibilities }}
- - {{ . | markdownify }}
- {{ end }}
-
- {{ end }}
-
From 96768ade2dd8852c2102997d857a7a4c5ece6132 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bernat=20Borr=C3=A0s=20Civil?=
<70479573+BernatBC@users.noreply.github.com>
Date: Mon, 12 Feb 2024 08:27:15 +0100
Subject: [PATCH 02/81] Add dutch in Readme (#883)
Co-authored-by: Emruz Hossain
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index be320d6..3468061 100644
--- a/README.md
+++ b/README.md
@@ -67,6 +67,7 @@ For more details about the features please visit [here](https://toha-guides.netl
- Português Europeu
- Català
- Português Brasileiro
+- Nederlands
To know more about how to translate your site, please visit [here](https://toha-guides.netlify.app/posts/translation/). Follow, the data and post format from this [example site](https://hugo-toha.github.io).
From df78c743c8073e662b7d6f945180b98181ec7d9c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bernat=20Borr=C3=A0s=20Civil?=
<70479573+BernatBC@users.noreply.github.com>
Date: Mon, 12 Feb 2024 08:29:12 +0100
Subject: [PATCH 03/81] Fix Tags sidebar font color (#890)
Co-authored-by: Emruz Hossain
---
assets/styles/components/links.scss | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/assets/styles/components/links.scss b/assets/styles/components/links.scss
index 3b162e2..61369a2 100644
--- a/assets/styles/components/links.scss
+++ b/assets/styles/components/links.scss
@@ -10,7 +10,7 @@ a {
}
}
-.list-link {
+.list-link, .taxonomy-term {
text-decoration: none !important;
color: get-light-color('text-color');
@include transition();
@@ -67,7 +67,7 @@ html[data-theme='dark'] {
}
}
- .list-link {
+ .list-link, .taxonomy-term {
color: get-dark-color('text-color');
&:hover,
From 970656789ce6d3977a93c94221a8c056cb242cc0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bernat=20Borr=C3=A0s=20Civil?=
<70479573+BernatBC@users.noreply.github.com>
Date: Mon, 12 Feb 2024 08:31:09 +0100
Subject: [PATCH 04/81] Fix anchors in post cards (#891)
Co-authored-by: Emruz Hossain
---
layouts/partials/cards/post.html | 38 +++++++++++++++++---------------
1 file changed, 20 insertions(+), 18 deletions(-)
diff --git a/layouts/partials/cards/post.html b/layouts/partials/cards/post.html
index 0653031..99178bc 100644
--- a/layouts/partials/cards/post.html
+++ b/layouts/partials/cards/post.html
@@ -1,24 +1,26 @@
{{ end }}
+ {{ if .custonSections }}
+
+ {{ range .custonSections }}
+ {{ .name }}:
+ {{ .content | markdownify }}
+ {{ end }}
+
+ {{ end }}
|
diff --git a/layouts/partials/sections/education.html b/layouts/partials/sections/education.html
index 39ef52a..afd586d 100644
--- a/layouts/partials/sections/education.html
+++ b/layouts/partials/sections/education.html
@@ -119,6 +119,14 @@
{{ end }}
+ {{ if .custonSections }}
+
+ {{ range .custonSections }}
+ {{ .name }}:
+ {{ .content | markdownify }}
+ {{ end }}
+
+ {{ end }}
|
From 35bca7198749eb412eadbebc2a30493f2c0227f9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bernat=20Borr=C3=A0s=20Civil?=
<70479573+BernatBC@users.noreply.github.com>
Date: Mon, 12 Feb 2024 20:35:55 +0100
Subject: [PATCH 06/81] Add spacing between project tags (#892)
* Add spacing between project tags
* Fix
---
assets/styles/sections/projects.scss | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/assets/styles/sections/projects.scss b/assets/styles/sections/projects.scss
index 582d348..47c1242 100644
--- a/assets/styles/sections/projects.scss
+++ b/assets/styles/sections/projects.scss
@@ -35,6 +35,10 @@
.project-card-footer {
display: flex;
+ .badge {
+ margin-left: 0.1em;
+ margin-right: 0.1em;
+ }
}
.project-tags-holder {
From b8bee52c7ca5800b453c2f4ff59f048f95d96542 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bernat=20Borr=C3=A0s=20Civil?=
<70479573+BernatBC@users.noreply.github.com>
Date: Tue, 13 Feb 2024 21:01:20 +0100
Subject: [PATCH 07/81] Fix hovering tags in posts (#894)
---
assets/styles/components/buttons.scss | 13 -------------
layouts/partials/misc/tags.html | 12 ++++++------
2 files changed, 6 insertions(+), 19 deletions(-)
diff --git a/assets/styles/components/buttons.scss b/assets/styles/components/buttons.scss
index 6e595b5..0d7283e 100644
--- a/assets/styles/components/buttons.scss
+++ b/assets/styles/components/buttons.scss
@@ -56,14 +56,12 @@
font-size: 0.5em;
list-style-type: none;
display: inline-block;
- background: get-light-color('accent-color');
margin-left: 0.2em;
margin-right: 0.2em;
margin-top: 0.6em;
margin-bottom: 0.6em;
}
a {
- color: get-light-color('text-over-accent-color');
text-decoration: none !important;
}
}
@@ -143,17 +141,6 @@ html[data-theme='dark'] {
color: get-dark-color('muted-text-color');
}
- .tags {
- li {
- background: get-dark-color('accent-color');
- a {
- background-color: get-dark-color('bg-card');
- border: 1px solid get-dark-color('muted-text-color');
- color: get-dark-color('text-over-accent-color');
- }
- }
- }
-
.icon-button {
background-color: get-dark-color('muted-text-color');
color: get-dark-color('text-over-accent-color') !important;
diff --git a/layouts/partials/misc/tags.html b/layouts/partials/misc/tags.html
index 166fde5..f333300 100644
--- a/layouts/partials/misc/tags.html
+++ b/layouts/partials/misc/tags.html
@@ -1,8 +1,8 @@
From 32e95a572f000055192a15d27208f7897bed21a6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bernat=20Borr=C3=A0s=20Civil?=
<70479573+BernatBC@users.noreply.github.com>
Date: Fri, 16 Feb 2024 15:34:13 +0100
Subject: [PATCH 08/81] Update theme.toml for hugoThemesSiteBuilder (#896)
* Update theme.toml
* Add min hugo version
---
theme.toml | 47 +++++++++++++++++++++++++++--------------------
1 file changed, 27 insertions(+), 20 deletions(-)
diff --git a/theme.toml b/theme.toml
index 3ab6525..0032852 100644
--- a/theme.toml
+++ b/theme.toml
@@ -1,24 +1,14 @@
-# theme.toml template for a Hugo theme
-# See https://github.com/gohugoio/hugoThemes#themetoml for an example
-description = "A simple hugo theme for personal portfolio"
-homepage = "https://hugo-toha.github.io/"
+name = "Toha"
license = "MIT"
licenselink = "https://github.com/hugo-toha/toha/blob/master/LICENSE"
-min_version = "0.118.0"
-name = "Toha"
+description = "A simple hugo theme for personal portfolio"
+
+# The home page of the theme, where the source can be found.
+homepage = "https://github.com/hugo-toha/toha"
+
+# If you have a running demo of the theme.
+demosite = "https://hugo-toha.github.io/"
-features = [
- "Minimalist Design",
- "Fully Responsive",
- "Multiple Language Support",
- "Carefully Designed Cards",
- "Experience Timeline",
- "Achievement Gallery",
- "Sidebar to Categorize the Posts",
- "Short Codes",
- "Google Analytics Support",
- "Disqus Comment Support",
-]
tags = [
"Portfolio",
"Blog",
@@ -34,7 +24,24 @@ tags = [
"Bootstrap",
"Syntax highlighting",
]
+features = [
+ "Minimalist Design",
+ "Fully Responsive",
+ "Multiple Language Support",
+ "Carefully Designed Cards",
+ "Experience Timeline",
+ "Achievement Gallery",
+ "Sidebar to Categorize the Posts",
+ "Short Codes",
+ "Google Analytics Support",
+ "Disqus Comment Support",
+]
[author]
-homepage = "https://hossainemruz.github.io"
-name = "Emruz Hossain"
+ homepage = "https://hossainemruz.github.io"
+ name = "Emruz Hossain"
+
+[module]
+ [module.hugoVersion]
+ extended = true
+ min = "0.118.0"
\ No newline at end of file
From 9f5a44e24ea5397fcfc3bcd5ffa1b4c70572069e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bernat=20Borr=C3=A0s=20Civil?=
<70479573+BernatBC@users.noreply.github.com>
Date: Mon, 19 Feb 2024 10:11:18 +0100
Subject: [PATCH 09/81] Fix logos (#898)
---
layouts/partials/sections/education-alt.html | 4 ----
layouts/partials/sections/education.html | 5 -----
layouts/partials/sections/experiences/positions.html | 4 ----
3 files changed, 13 deletions(-)
diff --git a/layouts/partials/sections/education-alt.html b/layouts/partials/sections/education-alt.html
index 3c6273b..cbb6120 100644
--- a/layouts/partials/sections/education-alt.html
+++ b/layouts/partials/sections/education-alt.html
@@ -34,10 +34,6 @@
{{ $logoImage:= resources.Get .institution.logo}}
{{ if $logoImage }}
- {{/* svg don't support "Fit" operation */}}
- {{ if ne $logoImage.MediaType.SubType "svg" }}
- {{ $logoImage = $logoImage.Fit "300x300" }}
- {{ end }}
diff --git a/layouts/partials/sections/education.html b/layouts/partials/sections/education.html
index afd586d..fcfb8e5 100644
--- a/layouts/partials/sections/education.html
+++ b/layouts/partials/sections/education.html
@@ -34,11 +34,6 @@
{{ $logoImage:= resources.Get .institution.logo}}
{{ if $logoImage }}
- {{/* svg don't support "Fit" operation */}}
- {{ if ne $logoImage.MediaType.SubType "svg" }}
- {{ $logoImage = $logoImage.Fit "300x300" }}
- {{ end }}
-
diff --git a/layouts/partials/sections/experiences/positions.html b/layouts/partials/sections/experiences/positions.html
index 514d449..367801b 100644
--- a/layouts/partials/sections/experiences/positions.html
+++ b/layouts/partials/sections/experiences/positions.html
@@ -2,10 +2,6 @@
{{ $logoImage:= resources.Get .company.logo}}
{{ if $logoImage }}
- {{/* svg don't support "Fit" operation */}}
- {{ if ne $logoImage.MediaType.SubType "svg" }}
- {{ $logoImage = $logoImage.Fit "300x300" }}
- {{ end }}
From 1ec4cd2688547cd26b556a0b568fe38459458d64 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bernat=20Borr=C3=A0s=20Civil?=
<70479573+BernatBC@users.noreply.github.com>
Date: Fri, 23 Feb 2024 18:37:35 +0100
Subject: [PATCH 10/81] Add tags in post cards from search results (#895)
* Add tags in post cards from search results
* Use on_card parameter to decide to show the cards or not
* Fix search cards height
* Minor fix
* Fix null tags
* Fix CSS not applied properly in search page
Signed-off-by: hossainemruz
---------
Signed-off-by: hossainemruz
Co-authored-by: Emruz Hossain
---
assets/scripts/pages/search.js | 9 ++++++++-
layouts/_default/search.html | 24 ++++++++++++++++++------
2 files changed, 26 insertions(+), 7 deletions(-)
diff --git a/assets/scripts/pages/search.js b/assets/scripts/pages/search.js
index cd5eb08..87cd0c5 100644
--- a/assets/scripts/pages/search.js
+++ b/assets/scripts/pages/search.js
@@ -79,6 +79,13 @@ window.addEventListener('DOMContentLoaded', () => {
// pull template from hugo template definition
const templateDefinition = document.getElementById('search-result-template').innerHTML
// replace values
+ function adaptTags() {
+ const tags = value.item.tags;
+ let string = '';
+ if (tags) tags.forEach((t) => {string += '' + t + ""});
+ return string;
+ }
+
const output = render(templateDefinition, {
key,
title: value.item.title,
@@ -86,7 +93,7 @@ window.addEventListener('DOMContentLoaded', () => {
date: value.item.date,
summary: value.item.summary,
link: value.item.permalink,
- tags: value.item.tags,
+ tags: adaptTags(),
categories: value.item.categories,
snippet
})
diff --git a/layouts/_default/search.html b/layouts/_default/search.html
index 75aad98..5877e7d 100644
--- a/layouts/_default/search.html
+++ b/layouts/_default/search.html
@@ -28,28 +28,40 @@
{{ end }}
{{ define "content" }}
+
-
+
From 803821d7e8d92b236e8d55fbfa095beee63b389b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bernat=20Borr=C3=A0s=20Civil?=
<70479573+BernatBC@users.noreply.github.com>
Date: Sun, 25 Feb 2024 10:20:00 +0100
Subject: [PATCH 11/81] Fixes posts in search results (#900)
---
layouts/_default/search.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/layouts/_default/search.html b/layouts/_default/search.html
index 5877e7d..9475868 100644
--- a/layouts/_default/search.html
+++ b/layouts/_default/search.html
@@ -34,7 +34,7 @@
-
+
-
+
{{ block "navbar" . }} {{ end }}
diff --git a/layouts/_default/search.html b/layouts/_default/search.html
index 9475868..371c808 100644
--- a/layouts/_default/search.html
+++ b/layouts/_default/search.html
@@ -58,8 +58,8 @@
{{ end }}
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 8981d32..9d59e76 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -37,7 +37,7 @@
{{ if site.Params.features.blog.showAuthor | default true }}
-
+
{{ partial "helpers/get-author-name.html" . }}
{{ .Page.Date | time.Format ":date_full" }}{{ if site.Params.features.readingTime }} | {{ .ReadingTime }} {{i18n "minute" .ReadingTime }}{{ end }}
@@ -51,7 +51,7 @@
{{ if not (site.Params.features.blog.showAuthor | default true) }}
-
+
{{ .Page.Date | time.Format ":date_full" }}{{ if site.Params.features.readingTime }} | {{ .ReadingTime }} {{i18n "minute" .ReadingTime }}{{ end }}
{{ end }}
@@ -64,7 +64,7 @@
-
+
{{ if site.Params.features.blog.shareButtons }}
@@ -165,7 +165,7 @@
-
+
@@ -175,7 +175,7 @@
{{ if and site.Params.features.toc.enable ( .Params.enableTOC | default true ) }}
-
{{ i18n "toc_heading" }}
+
{{ i18n "toc_heading" }}
{{ .TableOfContents }}
diff --git a/layouts/index.html b/layouts/index.html
index 81296de..5a1faf2 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -29,7 +29,7 @@
document.documentElement.setAttribute('data-theme', theme);
-
+
{{- partial "navigators/navbar.html" . -}}
diff --git a/layouts/partials/cards/accomplishments.html b/layouts/partials/cards/accomplishments.html
index a62fa22..27015b1 100644
--- a/layouts/partials/cards/accomplishments.html
+++ b/layouts/partials/cards/accomplishments.html
@@ -4,7 +4,7 @@
{{ .name }}
@@ -12,7 +12,7 @@
diff --git a/layouts/partials/cards/post.html b/layouts/partials/cards/post.html
index 99178bc..4426b7c 100644
--- a/layouts/partials/cards/post.html
+++ b/layouts/partials/cards/post.html
@@ -15,12 +15,12 @@
{{ end }}
diff --git a/layouts/partials/cards/publication.html b/layouts/partials/cards/publication.html
index bdc7b21..2c238e1 100644
--- a/layouts/partials/cards/publication.html
+++ b/layouts/partials/cards/publication.html
@@ -12,11 +12,11 @@
{{ .title }}
@@ -26,13 +26,13 @@
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 048074f..c04bd7a 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -66,7 +66,7 @@