|
@@ -2,9 +2,9 @@
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
<title>Oz's Blog</title>
|
|
|
<subtitle>Oz's weblog</subtitle>
|
|
|
-<link href="http://oz123.github.com/atom.xml" rel="self" />
|
|
|
-<link href="http://oz123.github.com/" />
|
|
|
-<id>http://oz123.github.com/atom.xml</id>
|
|
|
+<link href="{{site_url}}/atom.xml" rel="self" />
|
|
|
+<link href="{{site_url}}/" />
|
|
|
+<id>{{site_url}}/atom.xml</id>
|
|
|
<updated>{{ last_build }}</updated>
|
|
|
<author>
|
|
|
<name>Oz Nahum Tiram</name>
|
|
@@ -13,10 +13,13 @@
|
|
|
{% for entry in entries %}
|
|
|
<entry>
|
|
|
<title>{{ entry.title }}</title>
|
|
|
- <link href="{{ entry.permalink }}" />
|
|
|
- <id>{{ entry.destination }}</id>
|
|
|
+ <link href="{{site_url}}/{{ entry.permalink }}" />
|
|
|
+ <id>{{site_url}}{{ entry.destination.lstrip('.') }}</id>
|
|
|
<content type="xhtml">
|
|
|
- <div xmlns="http://www.w3.org/1999/xhtml">{{ entry.summary_atom }}</div>
|
|
|
+ <div xmlns="http://www.w3.org/1999/xhtml">
|
|
|
+ {{ entry.header.summary }}
|
|
|
+ <a href="{{site_url}}{{ entry.destination.lstrip('.')}}">continue reading...</a>
|
|
|
+ </div>
|
|
|
</content>
|
|
|
</entry>
|
|
|
{% endfor %}
|