Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

--- | |
layout: null | |
--- | |
<?xml version="1.0" encoding="UTF-8"?> | |
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> | |
<channel> | |
<title>{{ site.name | xml_escape }}</title> | |
<description>{{ site.description | xml_escape }}</description> | |
<link>{{ site.url }}</link> | |
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" /> | |
{% for post in site.posts %} | |
{% if post.title != "" %} | |
<item> | |
<title>{{ post.title | xml_escape }}</title> | |
<description>{{ post.content | xml_escape }}</description> | |
{% else %} | |
<item> | |
<title> | |
{% if post.mf-bookmark-of %} | |
Nieuwe bookmark | |
{% else %} | |
{{ post.content | strip_html | xml_escape | truncatewords: 4 }} | |
{% endif %} | |
</title> | |
<description> | |
{% if post.mf-summary %} | |
{{ post.mf-summary }} | |
{% else %} | |
{{ post.content | xml_escape }} | |
{% endif %} | |
</description> | |
{% endif %} | |
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate> | |
<link>{% if post.slug %}{{ post.slug }}{% else %}{{ post.url }}{% endif %}</link> | |
<guid isPermaLink="true">{% if post.slug %}{{ post.slug }}{% else %}{{ post.url }}{% endif %}</guid> | |
{% if post.header %} | |
<header>{{ post.header }}</header> | |
{% endif %} | |
<category>{{ post.category }}</category> | |
<tags>{% assign tags = post.tags %}{{ tags | join: ', ' }}</tags> | |
</item> | |
{% endfor %} | |
</channel> | |
</rss> |