{{ .Permalink }}
{{ .Title }}
diff --git a/layouts/_default/list.json b/layouts/_default/list.json
index eb36c4c..693ed21 100644
--- a/layouts/_default/list.json
+++ b/layouts/_default/list.json
@@ -1,11 +1,13 @@
{
"version": "https://jsonfeed.org/version/1",
"title": "{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}",
- "home_page_url": "{{ .Site.BaseURL }}",
+ "home_page_url": "{{ "" | absLangURL }}",
"feed_url": "{{ with .OutputFormats.Get "json" }}{{ .Permalink }}{{ end }}",
"description": "Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}",
- "favicon": "{{ "assets/icon.png" | absURL }}",
- "icon": "{{ "assets/icon.png" | absURL }}",
+ {{- /* ICON, AHOY! */ -}}
+ "favicon": "{{ "icon.png" | absURL }}",
+ "icon": "{{ "icon.png" | absURL }}",
+
{{- with .Site.Author }}
"author": {
"name": "{{ .name }}"
diff --git a/layouts/_default/list.rss b/layouts/_default/list.rss
index 82c665d..71b7855 100644
--- a/layouts/_default/list.rss
+++ b/layouts/_default/list.rss
@@ -14,6 +14,8 @@ The template does miss out on certain things which I put it on a list for those
{{ .Permalink }}
Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}
Hugo -- gohugo.io
+ {{- /* ICON, AHOY! */ -}}
+ {{ "icon.png" | absURL }}
{{ with .Site.LanguageCode }}
{{.}}
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 5ad5a56..2867cd6 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -8,7 +8,7 @@
{{- with .Params.author }}
{{- $names := slice }}
{{- range . }}{{ $names = $names | append .name }}{{ end }}
- {{ i18n "published_by" }}: {{ delimit $names ", " ", and " }}
+ {{ i18n "published_by" }}: {{ delimit $names ", " (printf ", %s " (i18n "and")) }}
{{- end }}
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index a10ccb3..34c4746 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,7 +1,7 @@
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 6025ad2..7d8bed8 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -1,9 +1,9 @@