mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
c955907f60
- add microdata based on schema.org - add breadcrumb on the top of topic - add navigations link on the bottom of every pages - add category description on the category list
44 lines
1.8 KiB
Text
44 lines
1.8 KiB
Text
<div class='topic-list' itemscope itemtype='http://schema.org/ItemList'>
|
|
<meta itemprop='itemListOrder' content='http://schema.org/ItemListOrderDescending'>
|
|
<% @list.topics.each_with_index do |t,i| %>
|
|
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
|
|
<meta itemprop='url' content='<%= t.url %>'>
|
|
<a href='<%= t.relative_url %>' itemprop='item'>
|
|
<span itemprop='name'><%= t.title %></span>
|
|
</a>
|
|
<% if !@category && t.category %>
|
|
<span>[<a href='<%= t.category.url %>'><%= t.category.name %></a>]</span>
|
|
<% end %>
|
|
<span title='<%= t 'posts' %>'>(<%= t.posts_count %>)</span>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% if @list.topics.length > 0 && @list.more_topics_url %>
|
|
<div role='navigation' itemscope itemtype='http://schema.org/SiteNavigationElement'>
|
|
<% if params[:page].to_i > 0 %>
|
|
<span itemprop='url'><a href='<%= @list.prev_topics_url %>' rel='prev' itemprop='name'><%= t 'prev_page' %></a> </span>
|
|
<% end %>
|
|
<span itemprop='url'><b><a href='<%= @list.more_topics_url %>' rel='next' itemprop='name'><%= t 'next_page' %></a></b></span>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% if @rss %>
|
|
<% content_for :head do %>
|
|
<%= auto_discovery_link_tag(:rss, { action: "#{@rss}_feed" }, title: I18n.t("rss_description.#{@rss}")) %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<% if @category %>
|
|
<% content_for :head do %>
|
|
<%= auto_discovery_link_tag(:rss, { action: :category_feed }, title: t('rss_topics_in_category', category: @category.name)) %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<% if @title %>
|
|
<% content_for :title do %><%= @title %><% end %>
|
|
<% elsif @category %>
|
|
<% content_for :title do %><%=@category.name%> <%=t('topics')%><% end %>
|
|
<% elsif params[:page] %>
|
|
<% content_for :title do %><%=t 'page_num', num: params[:page].to_i + 1 %><% end %>
|
|
<% end %>
|