2019-03-29 04:32:42 +00:00
|
|
|
---
|
|
|
|
layout: null
|
|
|
|
---
|
|
|
|
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
|
|
|
|
|
<title>{{ site.title }}</title>
|
2024-04-03 20:01:21 +00:00
|
|
|
<link href="{{ site.baseurl }}/atom.xml" rel="self"/>
|
|
|
|
<id>{{ site.baseurl }}</id>
|
2019-03-29 04:32:42 +00:00
|
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
|
|
|
<author>
|
|
|
|
<name>{{ site.author.name }}</name>
|
|
|
|
<uri>{{ site.author.url }}</uri>
|
|
|
|
<email>{{ site.author.email }}</email>
|
|
|
|
</author>
|
|
|
|
|
|
|
|
{% for post in site.posts limit: 10 %}
|
|
|
|
|
|
|
|
<entry>
|
|
|
|
<title>{{ post.title }}</title>
|
2024-04-03 20:01:21 +00:00
|
|
|
<link href="{{ site.baseurl }}{{ post.url }}.html"/>
|
|
|
|
<id>{{ site.baseurl }}{{ post.id }}</id>
|
2019-03-29 04:32:42 +00:00
|
|
|
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
|
|
|
<content type="html">{{ post.content | xml_escape | truncatewords:50 }}</content>
|
2023-07-15 04:58:57 +00:00
|
|
|
{% assign post_image = post.image.path | default: post.image %}
|
|
|
|
{% if post_image %}
|
|
|
|
{% unless post_image contains "://" %}
|
2024-04-03 20:01:21 +00:00
|
|
|
{% assign post_image = post_image | prepend: site.baseurl %}
|
2023-07-15 04:58:57 +00:00
|
|
|
{% endunless %}
|
|
|
|
<media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="{{ post_image | xml_escape }}" />
|
|
|
|
<media:content medium="image" url="{{ post_image | xml_escape }}" xmlns:media="http://search.yahoo.com/mrss/" />
|
|
|
|
{% endif %}
|
|
|
|
</entry>
|
2019-03-29 04:32:42 +00:00
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
2023-03-12 00:32:05 +00:00
|
|
|
</feed>
|