diff --git a/assets/css/compiled/main.css b/assets/css/compiled/main.css index 5c631c5d..5ade8bd1 100644 --- a/assets/css/compiled/main.css +++ b/assets/css/compiled/main.css @@ -1609,6 +1609,10 @@ select { margin-bottom: 0.625rem; } +.mb-20 { + margin-bottom: 5rem; +} + .mb-3 { margin-bottom: 0.75rem; } diff --git a/config.toml b/config.toml index c89382d9..f31f2557 100644 --- a/config.toml +++ b/config.toml @@ -2,4 +2,4 @@ [module.hugoVersion] extended = true min = "0.87.0" - max = "0.115.1" \ No newline at end of file + max = "0.115.3" \ No newline at end of file diff --git a/exampleSite/content/users/index.md b/exampleSite/content/users/index.md index fdf34b4f..3518c18b 100644 --- a/exampleSite/content/users/index.md +++ b/exampleSite/content/users/index.md @@ -81,6 +81,8 @@ Real websites that are built with Blowfish. | [halcyonstraits.com](https://www.halcyonstraits.com/) | Doll photography | | [50-nuances-octets.fr](https://www.50-nuances-octets.fr/) | Organization site | | [marupanda.art/marucomics](https://marupanda.art/marucomics/) | Comics site | +| [seanomahoney.com](https://seanomahoney.com/) | Personal site | +| [pacochan.net](https://pacochan.net) | Personal site | {{< alert >}} diff --git a/i18n/de.yaml b/i18n/de.yaml index f4c51542..1fa0c8e0 100644 --- a/i18n/de.yaml +++ b/i18n/de.yaml @@ -18,7 +18,7 @@ article: part_of_series: "Dieser Artikel ist Teil einer Serie." part: "Teil" this_article: "Dieser Artikel" - related_articles: "Related" + related_articles: "Verwandte Artikel" author: byline_title: "Autor" @@ -63,4 +63,4 @@ shortcode: recent: - show_more: "Zeige Mehr" \ No newline at end of file + show_more: "Zeige Mehr" diff --git a/i18n/es.yaml b/i18n/es.yaml index 3c191f36..53aefc2a 100644 --- a/i18n/es.yaml +++ b/i18n/es.yaml @@ -15,10 +15,16 @@ article: word_count: one: "{{ .Count }} palabra" other: "{{ .Count }} palabras" + views: + one: "{{ .Count }} visualización" + other: "{{ .Count }} visualizaciones" + likes: + one: "{{ .Count }} me gusta" + other: "{{ .Count }} me gusta" part_of_series: "Este artículo es parte de una serie." part: "Parte" this_article: "Este artículo" - related_articles: "Related" + related_articles: "Relacionados" author: byline_title: "Autor" @@ -38,7 +44,7 @@ footer: powered_by: "Desarrollada con {{ .Hugo }} & {{ .Theme }}" list: - externalurl_title: "Link a página externa" + externalurl_title: "Enlace a página externa" no_articles: "Aún no hay artículos para listar aquí." nav: @@ -62,4 +68,4 @@ shortcode: recent_articles: "Reciente" recent: - show_more: "Mostrar Más" \ No newline at end of file + show_more: "Mostrar más" \ No newline at end of file diff --git a/layouts/_default/list.html b/layouts/_default/list.html index c990ef27..284e44aa 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -34,7 +34,8 @@ {{- end }} prose flex max-w-full flex-col dark:prose-invert lg:flex-row"> {{ if $toc }}
-
+
{{ partial "toc.html" . }}
diff --git a/layouts/_default/index.rss.xml b/layouts/_default/rss.xml similarity index 79% rename from layouts/_default/index.rss.xml rename to layouts/_default/rss.xml index 316c872b..7d3ecc8a 100644 --- a/layouts/_default/index.rss.xml +++ b/layouts/_default/rss.xml @@ -16,12 +16,14 @@ {{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }} {{ .Permalink }} Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }} - Hugo -- gohugo.io{{ with .Site.LanguageCode }} - {{.}}{{end}}{{ with .Site.Author.email }} + Hugo -- gohugo.io + {{ site.Language.LanguageCode }}{{ with .Site.Author.email }} {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Author.email }} - {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Copyright }} - {{.}}{{end}}{{ if not .Date.IsZero }} - {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}{{ end }} + {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}} + {{ if .Site.Params.footer.showCopyright | default true -}} + {{ with replace .Site.Params.copyright "{ year }" now.Year }}{{.}}{{ else }}© {{ now.Format "2006" }} {{ .Site.Author.name }}{{- end }} + {{- end }} + {{ if not .Date.IsZero }}{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}{{ end }} {{- with .OutputFormats.Get "RSS" -}} {{ printf "" .Permalink .MediaType | safeHTML }} {{- end -}} diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 60f58bc4..1dfe8d39 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -58,23 +58,32 @@ {{ end }} +
+ {{ if or (and (.Params.showTableOfContents | default (.Site.Params.article.showTableOfContents | default false)) (in .TableOfContents " -
+
{{ if and (.Params.showTableOfContents | default (.Site.Params.article.showTableOfContents | default false)) (in .TableOfContents "
{{ end }} -
+ +
+ {{ partial "series.html" . }} - {{ .Content | emojify }} -

+ +
+ {{ .Content | emojify }} +
+ {{ partial "series-closed.html" . }} + {{ partial "sharing-links.html" . }} + {{ partial "related.html" . }}