{{ .Content }} diff --git a/static/js/index.js b/static/js/index.js index 24c34c5..58a41ca 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -49,7 +49,7 @@ var $sitehead = $("#site-head"); }); $(".post-title").each(function () { - var t = $(this).text(); + var t = $(this).data("fnav-title"); var index = $(this).parents(".post-holder").index(); $fnav.append( "" + t + "" From 264742eb3efd7352aa968e03579fca0f74196ecb Mon Sep 17 00:00:00 2001 From: Jesper Kolbeck Date: Wed, 8 Dec 2021 22:05:13 +0100 Subject: [PATCH 3/6] Update homepage archetype with name --- archetypes/homepage.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/archetypes/homepage.md b/archetypes/homepage.md index 9a01e46..447e4cd 100644 --- a/archetypes/homepage.md +++ b/archetypes/homepage.md @@ -1,9 +1,15 @@ --- title: '{{ replace .Name "-" " " | title }}' + +# The "name" value will be used as text for buttons and fixed menu items. +# The "title" will be used if "name" is not provided. +#name: 'Short Title' + # The "weight" will determine where this section appears on the "homepage". # A bigger weight will place the content more towards the bottom of the page. # It's like gravity ;-). weight: 5 + # If "header_menu" is true, then a button linking to this section will be placed # into the header menu at the top of the homepage. header_menu: true From 4ea916f8b870c6717eb98db8eb540c91da2c3cb0 Mon Sep 17 00:00:00 2001 From: Jesper Kolbeck Date: Wed, 8 Dec 2021 22:12:31 +0100 Subject: [PATCH 4/6] Fix wording in archetype --- archetypes/homepage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archetypes/homepage.md b/archetypes/homepage.md index 447e4cd..b2e444a 100644 --- a/archetypes/homepage.md +++ b/archetypes/homepage.md @@ -2,7 +2,7 @@ title: '{{ replace .Name "-" " " | title }}' # The "name" value will be used as text for buttons and fixed menu items. -# The "title" will be used if "name" is not provided. +# The "title" value will be used if value for "name" is not provided. #name: 'Short Title' # The "weight" will determine where this section appears on the "homepage". From 74bdc30f2b3dc1f2010561bd20221800163a5ee7 Mon Sep 17 00:00:00 2001 From: Jesper Kolbeck Date: Fri, 10 Dec 2021 15:28:52 +0100 Subject: [PATCH 5/6] Fix button and add hash to URL --- layouts/index.html | 2 +- static/js/index.js | 22 ++++++++++------------ 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/layouts/index.html b/layouts/index.html index 632c338..4e6750f 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -14,7 +14,7 @@ {{ with .Params.Name }} {{ $button_title = . }} {{ end }} - {{ $button_title }} + {{ $button_title }} {{ end }}