chrysalide

Minimalist and text-based browsers friendly theme for Motyl
Log | Files | Refs | README | LICENSE

atom.mustache (965B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <feed xmlns="http://www.w3.org/2005/Atom">
      3 	<title><![CDATA[Atom Feed - {{{site.name}}}]]></title>
      4 	<subtitle><![CDATA[{{{site.description}}}]]></subtitle>
      5 
      6 	<link href="{{{site.url}}}atom.xml" rel="self" />
      7 	<link href="{{{site.url}}}" />
      8 
      9 	<updated>{{{updated}}}</updated>
     10 	<id>{{{site.url}}}</id>
     11 
     12 	<author>
     13 		<name><![CDATA[{{site.author}}]]></name>
     14 	</author>
     15 
     16 	<generator uri="https://github.com/fcambus/motyl">Motyl</generator>
     17 
     18 	{{#feed}}
     19 	<entry>
     20 	<title><![CDATA[{{{title}}}]]></title>
     21 		<link href="{{{site.url}}}{{{url}}}"/>
     22 		<id>{{{site.url}}}{{{url}}}</id>
     23 		<published>{{datetime}}</published>
     24 		<updated>{{datetime}}</updated>
     25 		<content type="html"><![CDATA[{{{content}}}]]></content>
     26 		<summary type="html">
     27 			<![CDATA[{{description}}]]>
     28 		</summary>
     29 
     30 		{{#categoryDisplay}}
     31 		<category term="{{category}}" scheme="{{{site.url}}}/categories/{{{url}}}"/>
     32 		{{/categoryDisplay}}
     33 	</entry>
     34 	{{/feed}}
     35 </feed>