mirror of
https://github.com/kremalicious/blog.git
synced 2024-12-23 01:30:01 +01:00
proper atom feed
This commit is contained in:
parent
8b6e97f820
commit
825e9c3c59
@ -68,7 +68,8 @@
|
||||
<!-- Canonical URL -->
|
||||
<link rel="canonical" href="{{ site.url}}{{ page.url | replace:'index.html','' }}">
|
||||
|
||||
<link rel="alternate" href="{{ site.url }}/feed/" type="application/rss+xml" title="Posts Feed"/>
|
||||
<!-- Atom feed -->
|
||||
<link rel="alternate" type="application/atom+xml" title="kremalicious posts feed" href="{{ site.url }}/feed/" />
|
||||
|
||||
<!-- Apple -->
|
||||
<meta name="apple-mobile-web-app-title" content="kremalicious">
|
||||
|
@ -6,49 +6,47 @@ redirect_from:
|
||||
---
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
|
||||
|
||||
<title type="text" xml:lang="en">{{ site.name }}</title>
|
||||
<link type="application/atom+xml" href="{{ site.url }}/feed/" rel="self"/>
|
||||
<link type="text" href="{{ site.url }}" rel="alternate"/>
|
||||
<link type="application/atom+xml" href="{{ site.url }}/feed/" rel="self"/>
|
||||
<link href="{{ site.url }}/"/>
|
||||
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
||||
<id>{{ site.url }}</id>
|
||||
<author>
|
||||
<name>{{ site.author }}</name>
|
||||
<email>{{ site.email }}</email>
|
||||
</author>
|
||||
|
||||
|
||||
{% for post in site.posts limit:100 %}
|
||||
<entry>
|
||||
{% if post.layout == "link" %}
|
||||
<title>{{ post.title | escape | titlecase }} →</title>
|
||||
<link>{{ post.linkurl | escape }}</link>
|
||||
<link rel="alternate" type="text/html" href="{{ post.linkurl | escape }}" />
|
||||
{% else %}
|
||||
<title>{{ post.title | escape | titlecase }}</title>
|
||||
<link>{{ site.url }}{{ post.url | escape }}</link>
|
||||
<link rel="alternate" type="text/html" href="{{ site.url }}{{ post.url | escape }}" />
|
||||
{% endif %}
|
||||
|
||||
|
||||
<published>{{ post.date | date_to_xmlschema }}</published>
|
||||
|
||||
|
||||
{% if post.updated %}
|
||||
<updated>{{ post.updated | date_to_xmlschema }}</updated>
|
||||
{% else %}
|
||||
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
||||
{% endif %}
|
||||
|
||||
|
||||
<id>{{ site.url }}{{ post.url | escape }}</id>
|
||||
<content type="html">
|
||||
{% if post.image %}
|
||||
<img src="{{ site.url }}/media/{{ post.image }}" />
|
||||
{% endif %}
|
||||
|
||||
|
||||
{{ post.content | xml_escape }}
|
||||
|
||||
|
||||
{% if post.layout == "link" %}
|
||||
<a href="{{ post.linkurl | escape }}">Go to source &#187;</a> <br />
|
||||
<a href="{{ site.url }}{{ post.url | escape }}" title="Permalink for this post">&#8734;</a>
|
||||
{% endif %}
|
||||
|
||||
<hr />
|
||||
You should <a href="https://twitter.com/kremalicious">follow me on Twitter.</a>
|
||||
</content>
|
||||
</entry>
|
||||
{% endfor %}
|
||||
|
Loading…
Reference in New Issue
Block a user