--- redirect_from: - /home/feed/ - /feed/atom/ - /comments/feed/ --- Jekyll {{ site.time | date_to_xmlschema }} {{ site.url }}/ {% if site.name %} {{ site.name | xml_escape }} {% endif %} {% if site.description %} {{ site.description | xml_escape }} {% endif %} {% if site.author %} {% if site.author.name %} {{ site.author.name | xml_escape }} {% else %} {{ site.author | xml_escape }} {% endif %} {% if site.author.email %} {{ site.author.email | xml_escape }} {% endif %} {% if site.author.uri %} {{ site.author.uri | xml_escape }} {% endif %} {% endif %} {% for post in site.posts limit:100 %} {% if post.layout == "link" %} {{ post.title | markdownify | strip_html | strip_newlines | xml_escape | titlecase }} → {% else %} {{ post.title | markdownify | strip_html | strip_newlines | xml_escape | titlecase }} {% endif %} {{ post.date | date_to_xmlschema }} {% if post.updated %} {{ post.updated | date_to_xmlschema }} {% else %} {{ post.date | date_to_xmlschema }} {% endif %} {{ post.id | prepend: site.url | xml_escape }} {% if post.image %} <img src="{{ site.url }}/media/{{ post.image }}" /> {% endif %} {{ post.content | markdownify | xml_escape }} {% if post.layout == "link" %} <a href="{{ post.linkurl | xml_escape }}">Go to source &#187;</a> <br /> <a href="{{ site.url }}{{ post.url | xml_escape }}" title="Permalink for this post">&#8734;</a> {% endif %} {% if post.author %} {% if post.author.name %} {{ post.author.name | xml_escape }} {% else %} {{ post.author | xml_escape }} {% endif %} {% if post.author.email %} {{ post.author.email | xml_escape }} {% endif %} {% if post.author.url %} {{ post.author.url | xml_escape }} {% endif %} {% endif %} {% if post.category %} {% endif %} {% for tag in post.tags %} {% endfor %} {% if post.excerpt %} {{ post.excerpt | markdownify | strip_html | strip_newlines | xml_escape }} {% endif %} {% endfor %}