chore: filters
This commit is contained in:
parent
88de150e1f
commit
481656c80d
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{%- assign entries = data | normalizeEntries -%}
|
{%- assign entries = data | normalizeEntries | reverse -%}
|
||||||
{
|
{
|
||||||
"version": "https://jsonfeed.org/version/1",
|
"version": "https://jsonfeed.org/version/1",
|
||||||
"title": "{{ title }}",
|
"title": "{{ title }}",
|
||||||
|
|
|
@ -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 -%}
|
{%- assign entries = data | normalizeEntries | reverse -%}
|
||||||
<title>{{ title }}</title>
|
<title>{{ title }}</title>
|
||||||
<description>{{ description }}</description>
|
<description>{{ description }}</description>
|
||||||
<link>{{ permalink | absoluteUrl: meta.url }}</link>
|
<link>{{ permalink | absoluteUrl: meta.url }}</link>
|
||||||
|
|
Reference in a new issue