diff --git a/archetypes/page.md b/archetypes/page.md index 68015447..14e945b4 100644 --- a/archetypes/page.md +++ b/archetypes/page.md @@ -2,10 +2,16 @@ title: "{{ replace .Name "-" " " | title }}" date: {{ .Date }} draft: true -excludeFromTopNav: false +# comment out the menu and weight variables +# if you don't want to display this page in the top navigation bar +menu: topnav +weight: 10 -# set the link if you want to redirect the user. +# set the link variable if you want to redirect +# to another URL either relative or absolute link: "" -# set the html target parameter if you want to change default behavior +# set the target variable if you want to change default behavior, +# that is to open this page in a new tab; +# the target will be ignored if the link is empty target: "_blank" --- diff --git a/go.mod b/go.mod index 97e79cb4..eb669a32 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/ohmykreee/kreee-blog -go 1.21.5 +go 1.19 require github.com/Lednerb/bilberry-hugo-theme/v4 v4.2.1 // indirect