diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml index 7dddba8..a58ec42 100644 --- a/config/_default/hugo.toml +++ b/config/_default/hugo.toml @@ -16,6 +16,12 @@ enableInlineShortcodes = true taxonomy = ['html',] term = ['html', 'rss'] +# rename rss output from index.xml to feed.xml +[outputFormats] + [outputFormats.rss] + mediatype = "application/rss" + baseName = "feed" + [permalinks] posts = ":filename" diff --git a/layouts/partials/about.html b/layouts/partials/about.html index 21d87bb..4260bb1 100644 --- a/layouts/partials/about.html +++ b/layouts/partials/about.html @@ -1,7 +1,7 @@ {{ with .Site.Params.about }}
{{ with .logo }}{{ end }} -

{{ .title }}  

+

{{ .title }}  

{{ partial "tagline.html" . }}
 {{ site.Params.Author }} diff --git a/layouts/partials/archive.html b/layouts/partials/archive.html index 71f3b34..c5e3690 100644 --- a/layouts/partials/archive.html +++ b/layouts/partials/archive.html @@ -6,7 +6,7 @@ {{ if .IsHome }}

{{ site.Params.indexTitle | markdownify }}

{{ else }} -

{{ .Title | markdownify }}{{ if eq .Kind "term" }}  

{{ end }} +

{{ .Title | markdownify }}{{ if eq .Kind "term" }}  

{{ end }} {{ end }} {{ .Content }}