content.rhtml
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:2k
源码类别:

Ajax

开发平台:

Others

  1. <h3><%= _("Syndicate")%></h3>
  2. <ul>
  3.   <% if @sidebar.articles -%>
  4.     <li><a href="<%= url_for :controller => 'articles', :action => 'index', :format => @sidebar.format_strip %>" title="Articles feed"><%= _("Articles")%></a></li>
  5.   <% end %>
  6.   <% if @sidebar.comments -%>
  7.   <li><a href="<%= admin_comments_url(:format=>@sidebar.format_strip) %>" title="Comments feed" test="<%= @sidebar.format_strip%>"><%= _("Comments")%></a></li>
  8.   <% end %>
  9.   <% if @sidebar.trackbacks -%>
  10.   <li><a href="<%= url_for :controller=>'xml', :action=>'feed', :format => @sidebar.format_strip, :type => 'trackbacks' %>" title="Trackbacks feed"><%= _("Trackbacks")%></a></li>
  11.   <% end %>
  12.   <% if @sidebar.category_feeds and controller.controller_name == 'categories' and controller.action_name == 'show' %>
  13.     <% format = (@sidebar.format_strip == 'rss') ? @auto_discovery_url_rss : @auto_discovery_url_atom  %>
  14.     <%= content_tag(:li, _("Category %s",  link_to(@grouping.display_name, format))) %>
  15.   <% end %>
  16.   <% if @sidebar.tag_feeds and controller.controller_name == 'tags' and controller.action_name == 'show' %>
  17.     <% format = (@sidebar.format_strip == 'rss') ? @auto_discovery_url_rss : @auto_discovery_url_atom  %>
  18.     <%= content_tag(:li, _("Tag %s",  link_to(@grouping.display_name, format))) %>
  19.   <% end %>  
  20.   <% if @sidebar.article_comments and controller.controller_name == 'redirect' %>
  21.     <% format = (@sidebar.format_strip == 'rss') ? @auto_discovery_url_rss : @auto_discovery_url_atom  %>
  22.     <%= content_tag(:li, link_to(@article.title, format)) %>
  23.   <% end %>
  24.   
  25.   
  26. </ul>