this repo has no description
at master 1.5 kB view raw
1<?xml version="1.0" encoding="UTF-8"?> 2<?xml-stylesheet type="text/xsl" href="/atom-style.xml"?> 3<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="{{ lang }}"> 4 <title>{{ config.title }} 5 {%- if term %} - {{ term.name }} 6 {%- elif section.title %} - {{ section.title }} 7 {%- endif -%} 8 </title> 9 {%- if config.description %} 10 <subtitle>{{ config.description }}</subtitle> 11 {%- endif %} 12 <link href="{{ feed_url | safe }}" rel="self" type="application/atom+xml"/> 13 <link href=" 14 {%- if section -%} 15 {{ section.permalink | escape_xml | safe }} 16 {%- else -%} 17 {{ config.base_url | escape_xml | safe }} 18 {%- endif -%} 19 " rel="related"/> 20 <generator uri="https://www.getzola.org/">Zola</generator> 21 <updated>{{ last_updated | date(format="%+") }}</updated> 22 <id>{{ feed_url | safe }}</id> 23 {%- for page in pages %} 24 <entry xml:lang="{{ page.lang }}"> 25 <title>{{ page.title }}</title> 26 <published>{{ page.date | date(format="%+") }}</published> 27 <updated>{{ page.updated | default(value=page.date) | date(format="%+") }}</updated> 28 <link href="{{ page.permalink | safe }}" type="text/html"/> 29 <id>{{ page.permalink | safe }}</id> 30 <summary> 31 {%- if page.description -%} 32 {{ page.description }} 33 {%- elif page.summary -%} 34 {{ page.summary | safe }} 35 {%- endif -%} 36 </summary> 37 <content type="html">{{ page.content }}</content> 38 </entry> 39 {%- endfor %} 40</feed>