Sha256: 066ff11dee534dff3b88d812194904b0be7224623ca31c9191e1bbb414bbeb66
Contents?: true
Size: 1.15 KB
Versions: 2
Compression:
Stored size: 1.15 KB
Contents
<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:webfeeds="http://webfeeds.org/rss/1.0"> <channel> <title>{{ site.title | xml_escape }}</title> <atom:link href="{{ "/feed.xml" | absolute_url }}" rel="self" type="application/rss+xml"/> <link>{{ "/" | absolute_url }}</link> <description>{{ site.description | xml_escape }}</description> <pubDate>{{ site.time | date_to_rfc822 }}</pubDate> <webfeeds:icon>{{ site.theme_settings.avatar | absolute_url }}</webfeeds:icon> {% for post in site.posts limit:15 %} <item> {% if post.thumbnail %} <enclosure length="1" type="image" url="{{ post.thumbnail | absolute_url }}"/> {% endif %} <title>{{ post.title | xml_escape }}</title> <link>{{ post.url | absolute_url }}</link> <guid isPermaLink="false">{{ post.url | relative_url }}</guid> <description>{{ post.content | xml_escape }}</description> <pubDate>{{ post.date | date_to_rfc822 }}</pubDate> </item> {% endfor %} </channel> </rss>
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
jekyll-theme-type-on-strap-7.0.1 | _layouts/feed.xml |
type-on-strap-1.4.1 | _layouts/feed.xml |