
Clone this issue
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
Currently the RSS feed that is available in Blacklight does not advertise itself in the default application layout. Something like the following code (I couldn't find a rails way to do a link_tag) can be added to advertise the rss feed. Place within the head tags.
<link rel='alternate' href="<%= catalog_index_path(:params=> params, :format => :rss) %>" type="application/rss+xml" title="rss feed" />
|
|
Description
|
Currently the RSS feed that is available in Blacklight does not advertise itself in the default application layout. Something like the following code (I couldn't find a rails way to do a link_tag) can be added to advertise the rss feed. Place within the head tags.
<link rel='alternate' href="<%= catalog_index_path(:params=> params, :format => :rss) %>" type="application/rss+xml" title="rss feed" /> |
Show » |
|
<% if params[:controller] == 'catalog' and params[:action] == 'index'%>
<link rel='alternate' href="<%= catalog_index_path(:params=> params, :format => :rss) %>" type="application/rss+xml" title="rss feed" />
<% end %>