diff --git a/_config.yml b/_config.yml index 86f3fb97..8035041d 100644 --- a/_config.yml +++ b/_config.yml @@ -150,6 +150,7 @@ gems: - jekyll-paginate - jekyll-sitemap - jekyll-gist + - jekyll-feed # Outputting permalink: /:categories/:title/ diff --git a/feed.xml b/feed.xml deleted file mode 100644 index 1ebf68f2..00000000 --- a/feed.xml +++ /dev/null @@ -1,43 +0,0 @@ ---- -sitemap: false ---- - - - -{{ site.title }} -Jekyll - - -{{ site.time | date_to_xmlschema }} -{{ site.url }}/ - - {{ site.owner.name }} - {{ site.url }}/ - {% if site.owner.email %}{{ site.owner.email }}{% endif %} - -{% for post in site.posts limit:20 %} -{% if post.author %} - {% assign author = site.data.authors[post.author] %} -{% else %} - {% assign author = site.owner %} -{% endif %} - - <![CDATA[{{ post.title | cdata_escape }}]]> - - {{ site.url }}{{ post.id }} - {% if post.modified %}{{ post.modified | to_xmlschema }}T00:00:00-00:00 - {{ post.date | date_to_xmlschema }} - {% else %}{{ post.date | date_to_xmlschema }} - {{ post.date | date_to_xmlschema }}{% endif %} - - {{ author.name }} - {{ site.url }} - {% if author.email %}{{ author.email }}{% endif %} - - - {{ post.content | xml_escape }} - {% include feed-footer.html %} - - -{% endfor %} -