all repos — archive/hugo-xmin @ 6394af8cf6c1fc3315312cd5106725e70cbd0764

Customised minimal hugo theme

Add support for alternative output formats (e.g. RSS)

Alan Pearce
commit

6394af8cf6c1fc3315312cd5106725e70cbd0764

parent

b85fdab7fd6bfd5abbc9f57358dd23917f5affa8

1 file changed, 3 insertions(+), 0 deletions(-)

jump to
M layouts/_default/baseof.htmllayouts/_default/baseof.html
@@ -5,6 +5,9 @@ <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <title>{{ .Title }} | {{ .Site.Title }}</title> <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}" /> + {{ range .AlternativeOutputFormats -}} + {{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }} + {{ end -}} </head> <body>