summaryrefslogtreecommitdiffstats
path: root/templates/rss.xml
blob: ce1279558b28ae64c29c760112a663681c4f376a (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
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
      <title>{{ config.title }}
        {%- if term %} - {{ term.name }}
        {%- elif section.title %} - {{ section.title }}
        {%- endif -%}
      </title>
        <link>{%- if section -%}
            {{ section.permalink | escape_xml | safe }}
          {%- else -%}
            {{ config.base_url | escape_xml | safe }}
          {%- endif -%}
        </link>
        <description>{{ config.description }}</description>
        <generator>Zola</generator>
        <language>{{ lang }}</language>
        <atom:link href="{{ feed_url | safe }}" rel="self" type="application/rss+xml"/>
        <lastBuildDate>{{ last_updated | date(format="%a, %d %b %Y %H:%M:%S %z") }}</lastBuildDate>
        {%- for page in pages %}
		{%- if not page.extra.hidden|default(value=false) %}
        <item>
            <title>{{ page.title }}</title>
            <pubDate>{{ page.date | date(format="%a, %d %b %Y %H:%M:%S %z") }}</pubDate>
            <link>{{ page.permalink | escape_xml | safe }}</link>
            <guid>{{ page.permalink | escape_xml | safe }}</guid>
            <description>{% if page.summary %}{{ page.summary }}{% else %}{{ page.content }}{% endif %}</description>
        </item>
		{%- endif %}
        {%- endfor %}
    </channel>
</rss>