aboutsummaryrefslogtreecommitdiff
path: root/archetypes
diff options
context:
space:
mode:
Diffstat (limited to 'archetypes')
-rw-r--r--archetypes/book.md7
-rw-r--r--archetypes/post.md2
2 files changed, 9 insertions, 0 deletions
diff --git a/archetypes/book.md b/archetypes/book.md
index 1c79e82..39928c7 100644
--- a/archetypes/book.md
+++ b/archetypes/book.md
@@ -2,8 +2,15 @@
2title: "{{ replace .File.ContentBaseName "-" " " | title }}" 2title: "{{ replace .File.ContentBaseName "-" " " | title }}"
3author: "" 3author: ""
4image: "" 4image: ""
5description: "Review and notes for {{ replace .File.ContentBaseName "-" " " | title }} by {{ .Params.author }}"
5amazon: "" 6amazon: ""
6rating: 4 7rating: 4
7type: 'book' 8type: 'book'
9genres:
10 - fiction
11categories:
12 - fiction
8date: {{ .Date }} 13date: {{ .Date }}
14last_read: ['{{ dateFormat "2006-01-02" .Date }}']
15headless: true
9--- \ No newline at end of file 16--- \ No newline at end of file
diff --git a/archetypes/post.md b/archetypes/post.md
index 43dca9a..304e9f5 100644
--- a/archetypes/post.md
+++ b/archetypes/post.md
@@ -1,5 +1,7 @@
1--- 1---
2title: "{{ replace .File.ContentBaseName "-" " " | title }}" 2title: "{{ replace .File.ContentBaseName "-" " " | title }}"
3date: {{ .Date }} 3date: {{ .Date }}
4image: ""
5description: "Thoughts about some topic"
4draft: true 6draft: true
5--- 7---