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