From 1bd0c0d5bb7fc3106a3cafc17b0cbfc6c2765707 Mon Sep 17 00:00:00 2001 From: Etai Lev Ran Date: Wed, 20 Mar 2024 13:28:47 +0200 Subject: [PATCH] add blog collection and sample entry currently set `draft: true` so section and entry are both not rendered. References #410 Signed-off-by: Etai Lev Ran --- website/content/en/blog/_index.md | 8 ++++++++ website/content/en/blog/hello.md | 22 ++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 website/content/en/blog/_index.md create mode 100644 website/content/en/blog/hello.md diff --git a/website/content/en/blog/_index.md b/website/content/en/blog/_index.md new file mode 100644 index 00000000..e2774832 --- /dev/null +++ b/website/content/en/blog/_index.md @@ -0,0 +1,8 @@ +--- +title: ClusterLink Blogs +linkTitle: Blog +menu: {main: {weight: 20, pre: "" }} +draft: true +--- + +Coming Soon! diff --git a/website/content/en/blog/hello.md b/website/content/en/blog/hello.md new file mode 100644 index 00000000..9bacf1f0 --- /dev/null +++ b/website/content/en/blog/hello.md @@ -0,0 +1,22 @@ +--- +title: "Long Page Title" +linkTitle: ShortNavigationTitle +date: 2024-03-20 +author: Etai Lev Ran +description: >- + Welcome to ClusterLink +type: blog +draft: true +--- + +## Hello + +That's it. Just wanted to say Hi. + +Be gone now! + +Oh, and if you delete the `draft: true` entry in the front matter above, + it'll actually show up on the website. For now it's our secret. + +Blog entries will be displayed in reverse chronological order, based on the + `date` entry in the front matter.