aboutsummaryrefslogtreecommitdiff
path: root/assets/templates/markdown-feed.yaml
blob: c4450aaeca538485294ac14dc004f142394746bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
{{ range $key, $value := . -}}
{{- if or
  (eq $key "author")
  (eq $key "date")
  (eq $key "tags")
-}}
{{- $key }}: {{ $value }}
{{ end -}}
{{ end -}}
feed:
{{ range $key, $value := . -}}
{{- if and
  (ne $key "author")
  (ne $key "content")
  (ne $key "date")
  (ne $key "tags")
-}}
{{ print "  " }}{{- $key }}: {{ $value }}
{{ end -}}
{{ end -}}
---

{{ .content
  | replaceRE "{" "{"
  | replaceRE "}" "}"
}} [Read More →]({{ .link }})

{{ with .enclosure -}}

{{- $author := "default" -}}
{{- with $.author -}}
  {{ $author = . }}
{{- end -}}

{{- $description := "Image/Picture" -}}
{{- with $.description -}}
  {{ $description = . | htmlEscape }}
{{- end -}}

![{{ $description }}]({{ $.enclosure }} "
  {{ $description }}"
)

{{- end }}