From 747d78e86b82350db5763d5ae0612184eb411f52 Mon Sep 17 00:00:00 2001 From: George Cushen Date: Sun, 18 Feb 2024 00:39:43 +0000 Subject: [PATCH] starters: port docs template See #3010 --- starters/documentation/config/_default/hugo.yaml | 4 ++++ starters/documentation/content/docs/getting-started.md | 1 + starters/documentation/go.mod | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/starters/documentation/config/_default/hugo.yaml b/starters/documentation/config/_default/hugo.yaml index a8a6da725..7959a56a1 100644 --- a/starters/documentation/config/_default/hugo.yaml +++ b/starters/documentation/config/_default/hugo.yaml @@ -16,6 +16,10 @@ cascade: path: /docs/** editable: true show_breadcrumb: true + # Hide date from Next In Series + show_date: false + # Show date modified at end of content + show_date_updated: true # Blog post options - _target: path: /post/** diff --git a/starters/documentation/content/docs/getting-started.md b/starters/documentation/content/docs/getting-started.md index cfc6b115a..f504fdaff 100644 --- a/starters/documentation/content/docs/getting-started.md +++ b/starters/documentation/content/docs/getting-started.md @@ -1,5 +1,6 @@ --- title: Getting Started +date: 2024-02-17 weight: 1 --- diff --git a/starters/documentation/go.mod b/starters/documentation/go.mod index faa54e739..e24120e85 100644 --- a/starters/documentation/go.mod +++ b/starters/documentation/go.mod @@ -4,5 +4,5 @@ go 1.15 require ( github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20240217212918-ae7f0c597978 - github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240217212918-ae7f0c597978 + github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind v0.2.1-0.20240218003515-69d49c0b4a92 )