fix: exclude "Weeklies" entry in RSS feed
This commit is contained in:
parent
ba46190603
commit
3104b7fb1c
1 changed files with 11 additions and 9 deletions
|
@ -12,6 +12,7 @@
|
|||
<atom:link href="{{ .Permalink }}" rel="self" type="application/rss+xml" />
|
||||
|
||||
{{ range where .Site.Pages "Type" "weekly" }}
|
||||
{{ if ne .Title "Weeklies" }}
|
||||
<item>
|
||||
<title>{{ .Title }}</title>
|
||||
<link>{{ .Permalink }}</link>
|
||||
|
@ -23,5 +24,6 @@
|
|||
<media:content medium="image" url="{{ .Permalink }}cover.png" xmlns:media="http://search.yahoo.com/mrss/" />
|
||||
</item>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</channel>
|
||||
</rss>
|
Loading…
Reference in a new issue