1
0
Fork 0
mirror of https://git.sr.ht/~adnano/kiln synced 2024-05-14 20:46:05 +02:00

Fix unclosed tags in Atom template

This commit is contained in:
Adnan Maolood 2020-11-27 19:06:38 -05:00
parent be14245284
commit d91de5881c
2 changed files with 4 additions and 4 deletions

View File

@ -102,14 +102,14 @@ const atom_xml = `<?xml version="1.0" encoding="utf-8"?>
<id>{{ index site.URLs 0 }}{{ .Path }}</id>
<title>{{ .Title }}</title>
<updated>{{ .Updated.Format "2006-01-02T15:04:05Z07:00" }}</updated>
<link href="{{ index site.URLs 0 }}{{ .Path }}" rel="alternate">
<link href="{{ index site.URLs 0 }}{{ .Path }}" rel="alternate"/>
{{ range .Entries }}<entry>
<id>{{ index site.URLs 0 }}{{ .Path }}</id>
<title>{{ .Title }}</title>
<updated>{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}</updated>
{{- $path := .Path }}
{{- range site.URLs }}
<link href="{{ . }}{{ $path }}" rel="alternate">
<link href="{{ . }}{{ $path }}" rel="alternate"/>
{{- end }}
</entry>
{{ end -}}

View File

@ -3,14 +3,14 @@
<id>{{ index site.URLs 0 }}{{ .Path }}</id>
<title>{{ .Title }}</title>
<updated>{{ .Updated.Format "2006-01-02T15:04:05Z07:00" }}</updated>
<link href="{{ index site.URLs 0 }}{{ .Path }}" rel="alternate">
<link href="{{ index site.URLs 0 }}{{ .Path }}" rel="alternate"/>
{{ range .Entries }}<entry>
<id>{{ index site.URLs 0 }}{{ .Path }}</id>
<title>{{ .Title }}</title>
<updated>{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}</updated>
{{- $path := .Path }}
{{- range site.URLs }}
<link href="{{ . }}{{ $path }}" rel="alternate">
<link href="{{ . }}{{ $path }}" rel="alternate"/>
{{- end }}
</entry>
{{ end -}}