add subtitle/description field

This commit is contained in:
Katherina Walshe-Grey 2024-06-30 11:37:18 +01:00
parent 9313230d64
commit f9722dacf7
2 changed files with 5 additions and 1 deletions

View file

@ -2,6 +2,9 @@ baseURL = 'https://qenya.tel/'
languageCode = 'en-GB' languageCode = 'en-GB'
title = 'qenya' title = 'qenya'
[params]
description = ''
[[menus.main]] [[menus.main]]
name = 'Home' name = 'Home'
pageRef = '/' pageRef = '/'

View file

@ -1,2 +1,3 @@
<h1>{{ site.Title }}</h1> <h1>{{ site.Title }}</h1>
{{ with site.Params.description }}<p>{{ . }}</p>{{end}}
{{ partial "menu.html" (dict "menuID" "main" "page" .) }} {{ partial "menu.html" (dict "menuID" "main" "page" .) }}