blob: 8ca30edaee96a976ae699481fb21de0ad006946a (
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
|
{{- /*gotype:github.com/Necoro/feed2imap-go/internal/feed.Item*/ -}}
{{- with .Item.Link -}}
<{{.}}>
{{ end -}}
{{- with .TextBody -}}
{{.}}
{{ end -}}
{{- with .Item.Enclosures}}
Files:
{{- range . }}
{{ .URL}} ({{with .Length}}{{. | byteCount}}, {{end}}{{.Type}})
{{- end -}}
{{- end}}
--
Feed: {{ with .Feed.Title -}}{{.}}{{- end }}
{{ with .Feed.Link -}}
<{{.}}>
{{end -}}
Item: {{ with .Item.Title -}}
{{.}}
{{- end }}
{{ with .Item.Link -}}
<{{.}}>
{{end -}}
{{ with .Date -}}
Date: {{.}}
{{ end -}}
{{ with .Creator -}}
Author: {{.}}
{{ end -}}
{{ with (join ", " .Categories) -}}
Filed under: {{.}}
{{ end -}}
{{ with .FeedLink -}}
Feed-Link: {{.}}
{{ end -}}
|