diff options
-rw-r--r-- | notes/catalyst-master-merge-todos.txt | 2 | ||||
-rw-r--r-- | templates/web/default/header.html | 6 | ||||
-rw-r--r-- | templates/web/emptyhomes/header.html | 6 |
3 files changed, 10 insertions, 4 deletions
diff --git a/notes/catalyst-master-merge-todos.txt b/notes/catalyst-master-merge-todos.txt index 2a8fd0c81..660d9ac93 100644 --- a/notes/catalyst-master-merge-todos.txt +++ b/notes/catalyst-master-merge-todos.txt @@ -6,6 +6,4 @@ should we ditch flickr import? (does not seem to be getting huge usage and those add 'remember me on this computer' to auth login. What should default session lifetime be? -rss links - tracking code diff --git a/templates/web/default/header.html b/templates/web/default/header.html index e27abc473..ec0a3554b 100644 --- a/templates/web/default/header.html +++ b/templates/web/default/header.html @@ -12,7 +12,11 @@ <!--[if LT IE 7]> <style type="text/css">@import url("/css/ie6.css");</style> <![endif]--> - [% # FIXME - insert RSS links here %] + + [% IF rss %] + <link rel="alternate" type="application/rss+xml" title="[% rss.0 %]" href="[% rss.1 %]"> + [% END %] + </head> <body> diff --git a/templates/web/emptyhomes/header.html b/templates/web/emptyhomes/header.html index f003a840a..5e86cb899 100644 --- a/templates/web/emptyhomes/header.html +++ b/templates/web/emptyhomes/header.html @@ -15,7 +15,11 @@ <!--[if LT IE 7]> <style type="text/css">@import url("/css/ie6.css");</style> <![endif]--> -<!-- FIXME {{ $rss }} --> + +[% IF rss %] + <link rel="alternate" type="application/rss+xml" title="[% rss.0 %]" href="[% rss.1 %]"> +[% END %] + </head> <body> |