38 lines
No EOL
1.7 KiB
Text
38 lines
No EOL
1.7 KiB
Text
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<?xml-stylesheet href="/assets/styles/feed.xsl" type="text/xsl" ?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<atom:link href="{{ globals.url }}{{ permalink }}" rel="self" type="application/rss+xml" />
|
|
{%- assign entries = data -%}
|
|
<title><![CDATA[{{ title }}]]></title>
|
|
<description><![CDATA[{{ globals.site_description }}]]></description>
|
|
<link>{{ globals.url }}{{ permalink }}</link>
|
|
<lastBuildDate>{{ 'now' | date: "%a, %d %b %Y %H:%M:%S %z" }}</lastBuildDate>
|
|
<image>
|
|
<title><![CDATA[{{ title }}]]></title>
|
|
<link>{{ globals.url }}{{ permalink }}</link>
|
|
<url>{{ globals.cdn_url }}{{ globals.avatar }}?class=w200</url>
|
|
<width>144</width>
|
|
<height>144</height>
|
|
</image>
|
|
{% for entry in entries limit: 20 -%}
|
|
{%- assign entryFeed = entry.feed -%}
|
|
{%- assign rating = entry.rating -%}
|
|
{%- capture entryTitle -%}
|
|
{{ entryFeed.title }}
|
|
{%- if entryFeed.artist and entryFeed.artist.name %} via {{ entryFeed.artist.name }}{%- endif -%}
|
|
{%- if rating %} ({{ rating }}){%- endif -%}
|
|
{%- endcapture -%}
|
|
<item>
|
|
<title><![CDATA[{{ entryTitle }}]]></title>
|
|
<link>{{ entryFeed.url | encodeAmp }}</link>
|
|
<pubDate>{{ entryFeed.date | stringToRFC822Date }}</pubDate>
|
|
<guid isPermaLink="false">{{ entryFeed.url | encodeAmp }}</guid>
|
|
{%- if entryFeed.image -%}
|
|
<enclosure url="{{ globals.cdn_url }}{{ entryFeed.image }}?class=w800&type=jpg" type="image/jpeg" />
|
|
{%- endif -%}
|
|
<description><![CDATA[{{ entryFeed.description | markdown }}]]></description>
|
|
</item>
|
|
{%- endfor %}
|
|
</channel>
|
|
</rss> |