Repository: incubator-tamaya-site
Updated Branches:
  refs/heads/master e3761ad07 -> 197fbb15e


TAMAYA-178: Fix subscribe via RSS feed.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-site/commit/e2de92dd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-site/tree/e2de92dd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-site/diff/e2de92dd

Branch: refs/heads/master
Commit: e2de92dd56cae050d34a476d8194cdbc338a24d6
Parents: e3761ad
Author: Phil Ottlinger <pottlin...@apache.org>
Authored: Sun Dec 18 23:26:02 2016 +0100
Committer: Phil Ottlinger <pottlin...@apache.org>
Committed: Sun Dec 18 23:26:02 2016 +0100

----------------------------------------------------------------------
 templates/feed.thyme | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-site/blob/e2de92dd/templates/feed.thyme
----------------------------------------------------------------------
diff --git a/templates/feed.thyme b/templates/feed.thyme
index 0b12abb..5ace3d4 100644
--- a/templates/feed.thyme
+++ b/templates/feed.thyme
@@ -2,20 +2,19 @@
 <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"; 
xmlns:th="http://www.thymeleaf.org";>
   <channel>
     <title>Apache Incubator Tamaya</title>
-    <link th:text='${config.site_host}'>link</link>
+    <link th:text='${config.site_host}'>
     <atom:link th:href='${config.site_host+"/feed.xml"}' href="link" 
rel="self" type="application/rss+xml" />
-    <description>JBake Bootstrap Template</description>
+    <description>Apache Tamaya RSS feed template</description>
     <language>en-gb</language>
     <pubDate th:text='${#dates.format(published_date,"EEE, d MMM yyyy HH:mm:ss 
Z")}'>pubdate</pubDate>
     <lastBuildDate th:text='${#dates.format(published_date,"EEE, d MMM yyyy 
HH:mm:ss Z")}'>lastbuilddate</lastBuildDate>
 
     <item th:each="post: ${published_posts}">
       <title th:text='${post.title}'>title</title>
-      <link th:text='${config.site_host+"/"+post.uri}'>link</link>
+      <link th:text='${config.site_host+"/"+post.uri}'>
       <pubDate th:text='${#dates.format(post.date,"EEE, d MMM yyyy HH:mm:ss 
Z")}'>pubdate</pubDate>
       <guid th:text='${post.uri}' isPermaLink="false">guid</guid>
       <description 
th:text='${#strings.escapeXml(post.body)}'>description</description>
     </item>
-
   </channel>
 </rss>

Reply via email to