From b53b8a466bfde6a724e26c6cc672563ff6ea6af1 Mon Sep 17 00:00:00 2001 From: ArgentumCation Date: Sun, 20 Jul 2025 23:34:27 -0400 Subject: [PATCH] add templates to hugo ignore --- content/_templates/post.md | 3 ++- hugo.toml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/content/_templates/post.md b/content/_templates/post.md index ea26282..c2318a6 100755 --- a/content/_templates/post.md +++ b/content/_templates/post.md @@ -2,6 +2,7 @@ title: <% tp.file.title %> date: <% tp.file.creation_date("YYYY-MM-DD") %> modified: <% tp.file.last_modified_date("YYYY-MM-DD") %> +draft: true <% "---" %> -# <% tp.file.title %> \ No newline at end of file +# <% tp.file.title %> diff --git a/hugo.toml b/hugo.toml index b7f9908..0614120 100644 --- a/hugo.toml +++ b/hugo.toml @@ -2,6 +2,7 @@ baseURL = 'https://argentumcation.com/' languageCode = 'en-us' title = 'ArgentumCation' # theme = 'ananke' +ignoreFiles = ['content/_templates/*'] [markup.highlight] linenos = true anchorlinenos = true