diff options
Diffstat (limited to 'theme/templates/feed.xml')
-rw-r--r-- | theme/templates/feed.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/theme/templates/feed.xml b/theme/templates/feed.xml index 78796bd..7b23994 100644 --- a/theme/templates/feed.xml +++ b/theme/templates/feed.xml @@ -10,7 +10,7 @@ xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"> <channel> - <title>{{ site_name | default("cmc.pub") }}</title> + <title>{{ site_name | default("cleberg.net") }}</title> <atom:link href="{{ url_for("rss") }}" rel="self" type="application/rss+xml" /> @@ -20,13 +20,13 @@ <pubDate>{{ posts | first | getattr("date") | strftime("%a, %d %b %Y %H:%M:%S %z") }}</pubDate> <lastBuildDate>{{ now() | strftime("%a, %d %b %Y %H:%M:%S %z") }}</lastBuildDate> <generator>{{ meta.generator }}</generator> - <webMaster>{{ site_owner | default("hello@cmc.pub") }}</webMaster> + <webMaster>{{ site_owner | default("hello@cleberg.net") }}</webMaster> {% for post in posts %} <item> <title>{{ post.title }}</title> <link>{{ url_for("blog", slug=post.slug) }}</link> - <author>{{ post.author|default("hello@cmc.pub") }}</author> + <author>{{ post.author|default("hello@cleberg.net") }}</author> <guid isPermaLink="false">{{ url_for("blog", slug=post.slug) }}</guid> <pubDate>{{ post.date|strftime("%a, %d %b %Y %H:%M:%S %z") }}</pubDate> <description><![CDATA[{{ post.html|safe }}]]></description> |