Fixed RSS not generating for website.

This commit is contained in:
chris062689 2017-06-05 17:50:44 -04:00
parent 563cd7f47c
commit bfe7991fc8
2 changed files with 1 additions and 20 deletions

View File

@ -12,4 +12,5 @@ paginate = 10
weight = 1
[outputs]
home = [ "HTML", "RSS" ]
section = [ "HTML", "JSON" ]

View File

@ -16,25 +16,5 @@
      <description>{{ .Summary | html }}</description>
    </item>
    {{ end }}
{{ range where .Data.Pages "Section" "wiki" }}
    <item>
      <title>{{ .Title }}</title>
      <link>{{ .Permalink }}</link>
      <pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" }}</pubDate>
      <author>{{ .Params.Author }}</author>
      <guid>{{ .Permalink }}</guid>
      <description>{{ .Summary | html }}</description>
    </item>
    {{ end }}
{{ range where .Data.Pages "Section" "game" }}
    <item>
      <title>{{ .Title }}</title>
      <link>{{ .Permalink }}</link>
      <pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" }}</pubDate>
      <author>{{ .Params.Author }}</author>
      <guid>{{ .Permalink }}</guid>
      <description>{{ .Summary | html }}</description>
    </item>
    {{ end }}
  </channel>
</rss>