aboutsummaryrefslogtreecommitdiff
path: root/assets/templates
diff options
context:
space:
mode:
Diffstat (limited to 'assets/templates')
-rw-r--r--assets/templates/markdown-feed.yaml22
-rw-r--r--assets/templates/markdown.yaml9
2 files changed, 22 insertions, 9 deletions
diff --git a/assets/templates/markdown-feed.yaml b/assets/templates/markdown-feed.yaml
new file mode 100644
index 0000000..afb8c8a
--- /dev/null
+++ b/assets/templates/markdown-feed.yaml
@@ -0,0 +1,22 @@
+---
+{{ range $key, $value := . -}}
+{{- if or
+ (eq $key "date")
+ (eq $key "tags")
+-}}
+{{- $key }}: {{ $value }}
+{{ end -}}
+{{ end -}}
+feed:
+{{ range $key, $value := . -}}
+{{- if and
+ (ne $key "content")
+ (ne $key "date")
+ (ne $key "tags")
+-}}
+{{ print " " }}{{- $key }}: {{ $value }}
+{{ end -}}
+{{ end -}}
+---
+
+{{ .content }}
diff --git a/assets/templates/markdown.yaml b/assets/templates/markdown.yaml
index 109f5a1..e69de29 100644
--- a/assets/templates/markdown.yaml
+++ b/assets/templates/markdown.yaml
@@ -1,9 +0,0 @@
----
-{{ range $key, $value := . -}}
-{{- if ne $key "content" -}}
-{{- $key }}: {{ $value }}
-{{ end -}}
-{{- end -}}
----
-
-{{ .content }}