From: Bjørn Erik Pedersen Date: Sat, 22 Jul 2017 13:05:43 +0000 (+0200) Subject: docs: Add RSS template lookup example X-Git-Tag: v0.26~29 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=12e049520;p=brevno-suite%2Fhugo docs: Add RSS template lookup example --- diff --git a/output/docshelper.go b/output/docshelper.go index c45e956e..9ed94b09 100644 --- a/output/docshelper.go +++ b/output/docshelper.go @@ -45,6 +45,7 @@ func createLayoutExamples() interface{} { }{ {`AMP home, with theme "demoTheme".`, LayoutDescriptor{Kind: "home"}, true, "", AMPFormat}, {`AMP home, French language".`, LayoutDescriptor{Kind: "home", Lang: "fr"}, false, "", AMPFormat}, + {"RSS home, no theme.", LayoutDescriptor{Kind: "home"}, false, "", RSSFormat}, {"JSON home, no theme.", LayoutDescriptor{Kind: "home"}, false, "", JSONFormat}, {fmt.Sprintf(`CSV regular, "layout: %s" in front matter.`, demoLayout), LayoutDescriptor{Kind: "page", Layout: demoLayout}, false, "", CSVFormat}, {fmt.Sprintf(`JSON regular, "type: %s" in front matter.`, demoType), LayoutDescriptor{Kind: "page", Type: demoType}, false, "", JSONFormat},