Skip to content
Snippets Groups Projects
rss.xml 1.25 KiB
Newer Older
micressor's avatar
micressor committed
<feed xmlns="http://www.w3.org/2005/Atom">
  {{ if .IsHome }}
    <title>{{ .Title }}</title>
  {{ else }}
    <title>{{ .Title }} - {{ .Site.Title }}</title>
  {{ end }}
  <link href="{{ .Permalink }}index.xml" rel="self"/>
  <link href="{{ .Permalink }}"/>{{ if not .Date.IsZero }}
  <updated>{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</updated>{{ end }}
  <id>{{ .Permalink }}</id>{{ with .Site.Author.name }}
  <author>
    <name>{{.}}</name>{{ with $.Site.Author.email }}
    <email>{{.}}</email>{{end}}
  </author>{{end}}
micressor's avatar
micressor committed
  <generator>Hugo -- gohugo.io</generator>{{ range .Pages }}
micressor's avatar
micressor committed
  <entry>
    {{ `<title type="html"><![CDATA[` | safeHTML }}{{ .Title }}]]></title>
    <link href="{{ .Permalink }}"/>
    <id>{{ .Permalink }}</id>{{ with .Site.Params.Author }}
    <author>
      <name>{{.}}</name>
    </author>{{end}}
    <published>{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</published>
    <updated>{{ .Lastmod.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</updated>
micressor's avatar
micressor committed
    {{`<summary><![CDATA[` | safeHTML }}{{ with .Param "description" }}{{ . }}{{ else }}{{ .Summary }}{{ end }}]]></summary>
micressor's avatar
micressor committed
    <!-- Disable atom content
    {{ `<content type="html"><![CDATA[` | safeHTML }}{{ .Content }}]]></content>
-->
  </entry>{{ end }}
</feed>