summaryrefslogtreecommitdiff
path: root/layouts/index.atom.xml
diff options
context:
space:
mode:
authorNicholas Johnson <nick@nicksphere.ch>2022-04-30 00:00:00 +0000
committerNicholas Johnson <nick@nicksphere.ch>2022-04-30 00:00:00 +0000
commit0f3c967d08cec7d9cc6e78f6f72c86726fc7d290bf3e5698b907d179f15aee6d (patch)
treeb4a3217abde74d63c545c3604803fab9c03207b02b5c0bd97610859b2c037349 /layouts/index.atom.xml
parenta6d40f0ad8ec4912dc014d44ef2b454bf65bec61ed5fd8a018acf5db2124ca26 (diff)
Add back self-closing tags
Diffstat (limited to 'layouts/index.atom.xml')
-rw-r--r--layouts/index.atom.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/index.atom.xml b/layouts/index.atom.xml
index 1bb57f4..ffbedc9 100644
--- a/layouts/index.atom.xml
+++ b/layouts/index.atom.xml
@@ -3,8 +3,8 @@
<id>{{ .Permalink }}</id>
<title>{{ .Site.Title }}</title>
<updated>{{ .Date.Format "2006-01-02T15:04:05Z" | safeHTML }}</updated>
- <link href="{{ .Permalink }}atom.xml" rel="self">
- <link href="{{ .Permalink }}" rel="alternate">
+ <link href="{{ .Permalink }}atom.xml" rel="self" />
+ <link href="{{ .Permalink }}" rel="alternate" />
<author>
<name>{{ .Site.Author.name }}</name>
<email>{{ .Site.Author.email }}</email>
@@ -16,7 +16,7 @@
<id>{{ .Permalink }}</id>
<title type="html">{{ .Title }}</title>
<updated>{{ .Date.Format "2006-01-02T15:04:05Z" | safeHTML }}</updated>
- <link href="{{ .Permalink }}">
+ <link href="{{ .Permalink }}" />
<content type="html">{{ .Content | html }}</content>
</entry>{{ end }}
</feed>