diff --git a/assets/css/main.scss b/assets/css/main.scss index 9650b68..56b5f37 100644 --- a/assets/css/main.scss +++ b/assets/css/main.scss @@ -1,7 +1,7 @@ /* VARIABLES ========================================================================== */ // COLORS -$teal: #63BDA2; +$teal: #1F8455; $teal-darker: #359377; $gray-background: #F7F7F7; $gray-table-border: #EEEEEE; @@ -482,6 +482,8 @@ footer { display: inline-block; height: 2em; position: relative; + border: none; + background: none; } .social-icon>svg:hover { diff --git a/i18n/bg.toml b/i18n/bg.toml new file mode 100644 index 0000000..cf94e8a --- /dev/null +++ b/i18n/bg.toml @@ -0,0 +1,29 @@ +[page] +other = "Страница" + +[of] +other = "от" + +[newer] +other = "По-нови" + +[older] +other = "По-стари" + +[tagged] +other = "Тагнати" + +[tags] +other = "Тагове" + +[read_more] +other = "Прочети повече..." + +[archive] +other = "Архив" + +[noteworthy_theme] +other = "Тема Noteworthy" + +[built_with_hugo] +other = "Направено с Hugo" diff --git a/i18n/de.toml b/i18n/de.toml new file mode 100644 index 0000000..28ec87a --- /dev/null +++ b/i18n/de.toml @@ -0,0 +1,29 @@ +[page] +other = "Seite" + +[of] +other = "von" + +[newer] +other = "Neuere" + +[older] +other = "Ältere" + +[tagged] +other = "Getaggt" + +[tags] +other = "Tags" + +[read_more] +other = "Mehr lesen..." + +[archive] +other = "Archiv" + +[noteworthy_theme] +other = "Noteworthy Theme" + +[built_with_hugo] +other = "Gebaut mit Hugo" diff --git a/i18n/en.toml b/i18n/en.toml index efe0c53..19a1662 100644 --- a/i18n/en.toml +++ b/i18n/en.toml @@ -13,9 +13,15 @@ other = "Older" [tagged] other = "Tagged" +[tags] +other = "Tags" + [read_more] other = "Read more..." +[archive] +other = "Archive" + [noteworthy_theme] other = "Noteworthy theme" diff --git a/i18n/it.toml b/i18n/it.toml deleted file mode 100644 index 6f51495..0000000 --- a/i18n/it.toml +++ /dev/null @@ -1,23 +0,0 @@ -[page] -other = "Pagina" - -[of] -other = "di" - -[newer] -other = "Successivi" - -[older] -other = "Precedenti" - -[tagged] -other = "Contrassegnato" - -[read_more] -other = "Continua a leggere..." - -[noteworthy_theme] -other = "Tema Noteworthy" - -[built_with_hugo] -other = "Realizzato con Hugo" diff --git a/layouts/_default/single.html b/layouts/_default/single.html index dcfa1d9..34c228b 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -26,9 +26,9 @@ {{if .Params.tags}} {{ range .Params.tags }} - #{{.}} + #{{.}} {{ end }} {{ end }} -{{end}} \ No newline at end of file +{{end}} diff --git a/layouts/index.html b/layouts/index.html index 46f468b..f5af104 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -27,7 +27,7 @@ {{if .Params.tags}} {{ range .Params.tags }} - #{{.}} + #{{.}} {{ end }} {{ end }} diff --git a/layouts/partials/footer-mobile.html b/layouts/partials/footer-mobile.html index 3794793..cd1aaad 100644 --- a/layouts/partials/footer-mobile.html +++ b/layouts/partials/footer-mobile.html @@ -2,7 +2,7 @@ {{ partial "social.html" . }} diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 749481d..6f87c95 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -13,6 +13,14 @@ + + + + {{ partial "schema.html" . }} + {{ $main_style := resources.Get "css/main.scss" | toCSS | minify | fingerprint }} diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html index d4b7b74..6284ab7 100644 --- a/layouts/partials/nav.html +++ b/layouts/partials/nav.html @@ -5,7 +5,7 @@ {{ range .Site.Menus.main }} {{ .Name }} {{ end }} - Archive + {{ i18n "archive" }} {{ partial "footer.html" . }} diff --git a/layouts/partials/schema.html b/layouts/partials/schema.html new file mode 100644 index 0000000..8d66734 --- /dev/null +++ b/layouts/partials/schema.html @@ -0,0 +1,66 @@ +{{ if .IsHome -}} + +{{ else if .IsPage }} +{{ $author := or (.Params.author) (.Site.Params.Author.name) }} +{{ $authorUrl := or (.Params.authorUrl) (.Site.Params.Author.url) }} +{{ $org_name := .Site.Title }} + +{{ end }} + diff --git a/layouts/partials/social.html b/layouts/partials/social.html index 21aeb1a..1f55f4f 100644 --- a/layouts/partials/social.html +++ b/layouts/partials/social.html @@ -244,7 +244,7 @@ {{ end }} - + - + diff --git a/theme.toml b/theme.toml index 47689e5..c995739 100644 --- a/theme.toml +++ b/theme.toml @@ -1,9 +1,9 @@ name = "Noteworthy" license = "MIT" -licenselink = "https://github.com/kimcc/hugo-theme-noteworthy/blob/master/LICENSE.md" +licenselink = "https://git.ivayloivanov.eu/ivo/hugo-theme-noteworthy/src/branch/master/LICENSE.md" description = "A minimalist Hugo theme for writers and bloggers." -homepage = "https://github.com/kimcc/hugo-theme-noteworthy" -tags = ["blog", "minimalist", "minimal", "clean", "simple", "responsive", "light"] +homepage = "https://git.ivayloivanov.eu/ivo/hugo-theme-noteworthy" +tags = ["blog", "minimalist", "minimal", "clean", "simple", "responsive", "light", "dark"] features = ["blog", "responsive", "social media"] min_version = "0.55.2"