2020-07-24 14:34:09 +02:00
|
|
|
---
|
|
|
|
layout: nil
|
2020-07-27 09:57:56 +02:00
|
|
|
title : To Setto Setto RSS Feed
|
2020-07-24 14:34:09 +02:00
|
|
|
---
|
2020-11-17 01:23:25 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/">
|
|
|
|
|
2020-07-24 14:34:09 +02:00
|
|
|
<channel>
|
|
|
|
<title>{{ site.title | xml_escape }}</title>
|
2020-12-11 11:21:37 +01:00
|
|
|
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
|
2020-07-24 14:34:09 +02:00
|
|
|
<link>{{ site.url }}</link>
|
|
|
|
<description>{{ site.description | xml_escape }}</description>
|
|
|
|
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
|
|
|
|
<language>en-US</language>
|
|
|
|
<generator>https://jekyllrb.com/</generator>
|
|
|
|
<image>
|
2020-12-11 12:56:40 +01:00
|
|
|
<url>{{ site.icon }}</url>
|
2020-07-24 14:34:09 +02:00
|
|
|
<title>{{ site.title | xml_escape }}</title>
|
|
|
|
<link>{{ site.url }}</link>
|
2020-12-11 12:56:40 +01:00
|
|
|
<width>{% imagesize {{ site.icon }}:width %}</width>
|
|
|
|
<height>{% imagesize {{ site.icon }}:height %}</height>
|
2020-07-24 14:34:09 +02:00
|
|
|
</image>
|
2020-09-25 14:01:30 +02:00
|
|
|
<managingEditor>{{ site.publisher.mail }} ({{ site.publisher.name }})</managingEditor>
|
2020-07-24 14:34:09 +02:00
|
|
|
<copyright>Anti-Copyright 2018 {{ site.title }}</copyright>
|
2020-11-17 01:23:25 +01:00
|
|
|
|
2020-09-25 14:01:30 +02:00
|
|
|
|
|
|
|
{% for post in site.posts limit: 7 %}
|
2020-07-24 14:34:09 +02:00
|
|
|
<item>
|
|
|
|
<title>{{ post.title | xml_escape }}</title>
|
2020-11-17 01:23:25 +01:00
|
|
|
<link>{{ site.url }}{{ post.url }}?pk_campaign=rss</link>
|
2020-07-24 14:34:09 +02:00
|
|
|
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
|
2020-11-09 13:14:37 +01:00
|
|
|
<description>{{ post.description | truncate: 200 | xml_escape }}</description>
|
2020-09-25 14:01:30 +02:00
|
|
|
<category>Hi-Lights</category>
|
2020-11-17 01:23:25 +01:00
|
|
|
{% assign author_id = post.author | prepend: "/authors/" | append: "/" %}
|
|
|
|
{% assign author = site.authors | where: "url", author_id | first %}
|
|
|
|
<author>{{ author.email }} ({{ author.name }})</author>
|
2020-09-25 14:07:35 +02:00
|
|
|
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
|
2020-11-17 01:23:25 +01:00
|
|
|
<media:thumbnail url="{{ site.url }}{{ post.image }}" {% imagesize {{ post.image }}:props %}></media:thumbnail>
|
2020-12-11 11:21:37 +01:00
|
|
|
<media:title type="plain">{{ post.title | xml_escape }}</media:title>
|
2020-07-24 14:34:09 +02:00
|
|
|
</item>
|
|
|
|
{% endfor %}
|
|
|
|
</channel>
|
|
|
|
</rss>
|