Sha256: 5e918db5019c0e1593a593347e035c1b3760c2d7d337c055f5a072d1e746c042

Contents?: true

Size: 1.47 KB

Versions: 9

Compression:

Stored size: 1.47 KB

Contents

---
layout: null
permalink: /feed/
---
<?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

9 entries across 9 versions & 1 rubygems

Version Path
fenton-jekyll-boilerplate-0.0.15 assets/sitemap/atom.xml
fenton-jekyll-boilerplate-0.0.14 assets/sitemap/atom.xml
fenton-jekyll-boilerplate-0.0.13 assets/sitemap/atom.xml
fenton-jekyll-boilerplate-0.0.12 assets/sitemap/atom.xml
fenton-jekyll-boilerplate-0.0.11 assets/sitemap/atom.xml
fenton-jekyll-boilerplate-0.0.10 assets/sitemap/atom.xml
fenton-jekyll-boilerplate-0.0.9 assets/sitemap/atom.xml
fenton-jekyll-boilerplate-0.0.8 assets/sitemap/atom.xml
fenton-jekyll-boilerplate-0.0.7 assets/sitemap/atom.xml