fix: filters
This commit is contained in:
parent
1d30b03afe
commit
214201e76e
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<atom:link href="{{ permalink | absoluteUrl: meta.url }}" rel="self" type="application/rss+xml" />
|
<atom:link href="{{ permalink | absoluteUrl: meta.url }}" rel="self" type="application/rss+xml" />
|
||||||
{%- assign entries = data | normalizeEntries | reverse -%}
|
{%- assign entries = data | normalizeEntries -%}
|
||||||
<title>{{ title }}</title>
|
<title>{{ title }}</title>
|
||||||
<description>{{ description }}</description>
|
<description>{{ description }}</description>
|
||||||
<link>{{ permalink | absoluteUrl: meta.url }}</link>
|
<link>{{ permalink | absoluteUrl: meta.url }}</link>
|
||||||
|
|
|
@ -3,7 +3,7 @@ layout: null
|
||||||
eleventyExcludeFromCollections: true
|
eleventyExcludeFromCollections: true
|
||||||
permalink: /feeds/posts
|
permalink: /feeds/posts
|
||||||
---
|
---
|
||||||
{%- assign posts = collections.posts | reverse -%}
|
{%- assign posts = collections.posts -%}
|
||||||
{% render "partials/feeds/rss.liquid"
|
{% render "partials/feeds/rss.liquid"
|
||||||
permalink:"/feeds/posts"
|
permalink:"/feeds/posts"
|
||||||
title:"Cory Dransfeldt"
|
title:"Cory Dransfeldt"
|
||||||
|
|
Reference in a new issue