Sha256: 5236df6e468d76cb1b38ed1316456ebc895b81635ba3c1aedb13e3ec61893d02
Contents?: true
Size: 1.45 KB
Versions: 1
Compression:
Stored size: 1.45 KB
Contents
--- layout: null --- <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title>{{ site.title }}</title> <subtitle>{{ site.description }}</subtitle> <link href="{{ site.url }}{{ '/feed/atom.xml' | prepend: site.baseurl}}" rel="self" /> <link href="{{ site.url }}" /> <id>{{ site.url }}{{ '/feed/atom.xml' | prepend: site.baseurl}}</id> {%- for post in site.posts limit:1 %} <updated>{{ post.date | date_to_xmlschema }}</updated> {%- endfor %} {%- for post in site.posts limit:20 %} <entry> <title>{{ post.title }}</title> <link href="{{site.url}}{{ post.url | prepend: site.baseurl }}" /> <id>{{ post.url | prepend: site.url }}</id> <published>{{ post.date | date_to_xmlschema }}</published> <updated>{{ post.date | date_to_xmlschema }}</updated> <summary>{{ post.excerpt | default: post.description }}</summary> <author> {%- assign authordata = '' | split:'@' %} {%- for author in site.authors %} {%- if post.authors contains author.username or author.username == post.authors %} {%- capture data %} <name>{{ author.name }}</name> <email>{{ author.email }}</email> {%- endcapture %} {%- assign authordata = authordata | push: data %} {%- endif %} {%- endfor %} {{- authordata | array_to_sentence_string }} </author> </entry> {%- endfor %} </feed>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fenton-jekyll-boilerplate-0.0.1 | feed/atom.xml |