diff --git a/config.toml b/config.toml
index bd13bad..60d6dd9 100644
--- a/config.toml
+++ b/config.toml
@@ -4,7 +4,8 @@ title = "Julien's tech(ish) blog"
theme = "hugo-kiera"
canonifyurls = true
-paginate = 3
+[pagination]
+pagerSize = 3
summaryLength = 30
enableEmoji = true
@@ -48,7 +49,7 @@ pygmentsCodeFences = true
url = "/categories"
weight = 1
-[author]
+[params.author]
name = "Julien Fiegehenn"
github = "simbabque"
#gitlab = "username"
diff --git a/themes/hugo-kiera/layouts/_default/rss.xml b/themes/hugo-kiera/layouts/_default/rss.xml
index 76945ef..fcb8246 100644
--- a/themes/hugo-kiera/layouts/_default/rss.xml
+++ b/themes/hugo-kiera/layouts/_default/rss.xml
@@ -8,9 +8,9 @@
{{ .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 }}
- {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Author.email }}
- {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Copyright }}
+ {{.}}{{end}}{{ with .Site.Params.Author.email }}
+ {{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Params.Author.email }}
+ {{.}}{{ with $.Site.Params.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 .OutputFormats.Get "RSS" }}
@@ -21,7 +21,7 @@
{{ .Title }}
{{ .Permalink }}
{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}
- {{ with .Site.Author.email }}{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}
+ {{ with .Site.Params.Author.email }}{{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}{{end}}
{{ .Permalink }}
{{ .Content | replaceRE `[\x00-\x1F\x7F]` "" | html}}
diff --git a/themes/hugo-kiera/layouts/partials/disqus.html b/themes/hugo-kiera/layouts/partials/disqus.html
index 49f70a6..ccda8ab 100644
--- a/themes/hugo-kiera/layouts/partials/disqus.html
+++ b/themes/hugo-kiera/layouts/partials/disqus.html
@@ -12,7 +12,7 @@
return;
var disqus_loaded = false;
- var disqus_shortname = '{{ .Site.DisqusShortname }}';
+ var disqus_shortname = '{{ .Site.Config.Services.Disqus.Shortname }}';
var disqus_button = document.getElementById("show-comments");
var disqus_autoload = {{ .Site.Params.commentAutoload }};
diff --git a/themes/hugo-kiera/layouts/partials/footer.html b/themes/hugo-kiera/layouts/partials/footer.html
index 8701f55..5d0c490 100644
--- a/themes/hugo-kiera/layouts/partials/footer.html
+++ b/themes/hugo-kiera/layouts/partials/footer.html
@@ -18,7 +18,7 @@