diff --git a/app/views/layouts/default.rhtml b/app/views/layouts/default.rhtml
index 3464c723..ef0b85aa 100644
--- a/app/views/layouts/default.rhtml
+++ b/app/views/layouts/default.rhtml
@@ -5,7 +5,7 @@
<%- if @page and (@page.name == 'HomePage') and (%w( show published print ).include?(params['action'])) -%>
<%= h(@web.name) + (@show_diff ? ' (changes)' : '') %>
<%- elsif @web -%>
- <%= @title %> in <%= h @web.name -%>
+ <%= @title %> in <%= h @web.name %>
<%- else -%>
<%= @title %>
<%- end -%>
@@ -23,14 +23,16 @@
<%= File.read(RAILS_ROOT + '/public/stylesheets/instiki.css') if @inline_style %>
<%= stylesheet_link_tag 'instiki' unless @inline_style %>
-
+ <%= "" if @style_additions %>
<%= javascript_include_tag :defaults %>
<%- if @web -%>
- <%= auto_discovery_link_tag(:atom, :controller => 'wiki', :web => @web.address, :action => 'atom_with_headlines') %>
- <%= auto_discovery_link_tag(:atom, :controller => 'wiki', :web => @web.address, :action => 'atom_with_content') %>
+ <%= auto_discovery_link_tag(:atom, {:controller => 'wiki', :web => @web.address, :action => 'atom_with_headlines'},
+ :title => 'Atom with headlines') %>
+ <%= auto_discovery_link_tag(:atom, {:controller => 'wiki', :web => @web.address, :action => 'atom_with_content'},
+ :title => 'Atom with full content') %>
<%- end -%>