From 62fc57361131d9f3d2ce254efcdd6ea8adaff958 Mon Sep 17 00:00:00 2001 From: Philip Durbin Date: Sat, 7 Dec 2024 22:12:45 -0500 Subject: [PATCH] stub out blog --- content/posts/_index.md | 7 +++++++ content/posts/hello.md | 6 ++++++ hugo.yml | 10 ++++++++-- 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 content/posts/_index.md create mode 100644 content/posts/hello.md diff --git a/content/posts/_index.md b/content/posts/_index.md new file mode 100644 index 0000000..bca22a8 --- /dev/null +++ b/content/posts/_index.md @@ -0,0 +1,7 @@ ++++ +title = "Blog" +date = 2020-08-26T06:05:24-04:00 +draft = false +url = "/blog" ++++ + diff --git a/content/posts/hello.md b/content/posts/hello.md new file mode 100644 index 0000000..491f4c9 --- /dev/null +++ b/content/posts/hello.md @@ -0,0 +1,6 @@ ++++ +date = '2024-12-07T21:52:48-05:00' +title = 'Hello' ++++ + +Hello world! diff --git a/hugo.yml b/hugo.yml index cc3d95a..d5175e8 100644 --- a/hugo.yml +++ b/hugo.yml @@ -12,14 +12,18 @@ menu: name: Community url: /community/ weight: 20 + - identifier: blog + name: Blog + url: /blog/ + weight: 30 - identifier: download name: Download url: /#installing-the-software - weight: 30 + weight: 40 - identifier: github name: GitHub url: https://github.com/IQSS/dataverse - weight: 40 + weight: 50 markup: goldmark: renderer: @@ -29,3 +33,5 @@ params: label: icon: dataverse_project_logo.svg text: " " +permalinks: + posts: blog/:title