diff options
-rw-r--r-- | config.yaml | 6 | ||||
-rw-r--r-- | themes/stingray/layouts/partials/header.html | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/config.yaml b/config.yaml index 6700d06..6e29ba3 100644 --- a/config.yaml +++ b/config.yaml @@ -4,4 +4,8 @@ title: "RayHammer's Website" theme: "stingray" DefaultContentLanguage: "en" -SectionPagesMenu: "main"
\ No newline at end of file +SectionPagesMenu: "main" + +params: + title: "RayHammer" + description: "Local Idiot Online"
\ No newline at end of file diff --git a/themes/stingray/layouts/partials/header.html b/themes/stingray/layouts/partials/header.html index 9b61ee6..68a35cf 100644 --- a/themes/stingray/layouts/partials/header.html +++ b/themes/stingray/layouts/partials/header.html @@ -1,6 +1,6 @@ <header> <div class="text-center"> - <h1 class="title">{{ .Site.Title }}</h1> + <h1 class="title">{{ .Site.Params.Title }}</h1> {{ .Site.Params.Description }} </div> </header> |