aboutsummaryrefslogtreecommitdiff
path: root/_includes/feed.atom
blob: 5451702b8484dc02d4539c39fb986316f7c9c1f3 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="{{ include.lang }}">
  <link href="{{ page.url | absolute_url }}" rel="self" type="application/atom+xml" />
  <link href="{{ '/' | absolute_url }}" rel="alternate" type="text/html" hreflang="{{ include.lang }}" />
  <updated>{{ site.time | date_to_xmlschema }}</updated>
  <id>{{ page.url | absolute_url | xml_escape }}</id>

  <title type="html">{{ site.title | smartify | xml_escape }}</title>
  <subtitle>{{ site.t.feed.title[include.kind][include.lang] | smartify | xml_escape }}</subtitle>

  <author>
    <name>{{ site.author.name | xml_escape }}</name>
    <email>{{ site.author.email | xml_escape }}</email>
  </author>

  {% for entry in include.entries %}
    <entry xml:lang="{{ entry.lang }}">
      <title type="html">{{ entry.title | smartify | strip_html | normalize_whitespace | xml_escape }}</title>
      <link href="{{ entry.url | absolute_url }}" rel="alternate" type="text/html" title="{{ entry.title | xml_escape }}" />
      <published>{{ entry.date | date_to_xmlschema }}</published>
      <updated>{{ entry.updated_at | default: entry.date | date_to_xmlschema }}</updated>
      <id>{{ entry.url | absolute_url | xml_escape }}</id>

      <content type="html" xml:base="{{ entry.url | absolute_url | xml_escape }}">{{ entry.content | strip | xml_escape }}</content>

      <author>
        <name>{{ site.author.name | xml_escape }}</name>
        <email>{{ site.author.email | xml_escape }}</email>
      </author>

      <summary type="html">{{ entry.excerpt | strip_html | normalize_whitespace | xml_escape }}</summary>
    </entry>
  {% endfor %}
</feed>