diff --git a/site/config.toml b/site/config.toml index 1136a23..5a80581 100644 --- a/site/config.toml +++ b/site/config.toml @@ -12,4 +12,5 @@ paginate = 10 weight = 1 [outputs] +home = [ "HTML", "RSS" ] section = [ "HTML", "JSON" ] diff --git a/site/themes/citra-bs-theme/layouts/rss.xml b/site/themes/citra-bs-theme/layouts/rss.xml index 2a8b1b7..d6536f9 100644 --- a/site/themes/citra-bs-theme/layouts/rss.xml +++ b/site/themes/citra-bs-theme/layouts/rss.xml @@ -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>