2016-03-17 02:35:58 +08:00
|
|
|
<%- if include_crawler_content? %>
|
2015-11-09 11:55:17 +08:00
|
|
|
|
2016-04-13 23:49:37 +08:00
|
|
|
<%= server_plugin_outlet "topic_list_header" %>
|
|
|
|
|
2016-04-26 03:55:15 +08:00
|
|
|
<%- if SiteSetting.tagging_enabled && @tag_id %>
|
|
|
|
<h1>
|
2016-05-06 16:52:26 +08:00
|
|
|
<%= link_to "#{Discourse.base_url}/tags/#{@tag_id}", itemprop: 'item' do %>
|
2016-04-26 03:55:15 +08:00
|
|
|
<span itemprop='name'><%= @tag_id %></span>
|
|
|
|
<% end %>
|
|
|
|
</h1>
|
|
|
|
<% end %>
|
|
|
|
|
2015-05-01 00:46:19 +08:00
|
|
|
<% if @category %>
|
|
|
|
<h1>
|
2015-06-01 13:25:57 +08:00
|
|
|
<% if @category.parent_category %>
|
|
|
|
<%= link_to @category.parent_category.url, itemprop: 'item' do %>
|
|
|
|
<span itemprop='name'><%= @category.parent_category.name %></span>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% end %>
|
2015-05-01 00:46:19 +08:00
|
|
|
<%= link_to @category.url, itemprop: 'item' do %>
|
|
|
|
<span itemprop='name'><%= @category.name %></span>
|
|
|
|
<% end %>
|
|
|
|
</h1>
|
|
|
|
<br/>
|
|
|
|
<% end %>
|
|
|
|
|
2015-02-13 19:34:22 +08:00
|
|
|
<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>
|
2015-06-09 22:28:01 +08:00
|
|
|
<%= page_links(t) %>
|
2015-09-13 02:28:18 +08:00
|
|
|
<% if (!@category || @category.has_children?) && t.category %>
|
2016-03-17 12:09:08 +08:00
|
|
|
<span class='category'>[<a href='<%= t.category.url %>'><%= t.category.name %></a>]</span>
|
2015-02-13 19:34:22 +08:00
|
|
|
<% end %>
|
2016-03-17 12:09:08 +08:00
|
|
|
<span class='posts' title='<%= t 'posts' %>'>(<a href="<%=t.last_post_url%>"><%= t.posts_count %></a>)</span>
|
2015-02-13 19:34:22 +08:00
|
|
|
</div>
|
2014-06-05 23:14:06 +08:00
|
|
|
<% end %>
|
2013-02-13 14:43:21 +08:00
|
|
|
</div>
|
|
|
|
|
2015-02-13 00:53:21 +08:00
|
|
|
<% if @list.topics.length > 0 && @list.more_topics_url %>
|
2015-02-13 19:34:22 +08:00
|
|
|
<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>
|
2014-03-01 18:16:40 +08:00
|
|
|
<% end %>
|
2013-02-13 14:43:21 +08:00
|
|
|
|
2015-11-09 11:55:17 +08:00
|
|
|
<%- end %>
|
|
|
|
|
2013-10-12 00:35:12 +08:00
|
|
|
<% if @rss %>
|
|
|
|
<% content_for :head do %>
|
2015-06-10 03:22:11 +08:00
|
|
|
<%= auto_discovery_link_tag(:rss, "#{Discourse.base_url}/posts.rss", title: I18n.t("rss_description.posts")) %>
|
2015-01-02 20:06:57 +08:00
|
|
|
<%= auto_discovery_link_tag(:rss, { action: "#{@rss}_feed" }, title: I18n.t("rss_description.#{@rss}")) %>
|
2013-10-12 00:35:12 +08:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
2013-02-28 11:36:12 +08:00
|
|
|
<% if @category %>
|
|
|
|
<% content_for :head do %>
|
2015-01-02 20:06:57 +08:00
|
|
|
<%= auto_discovery_link_tag(:rss, { action: :category_feed }, title: t('rss_topics_in_category', category: @category.name)) %>
|
2015-10-15 17:00:47 +08:00
|
|
|
<%= raw crawlable_meta_data(title: @category.name, description: @category.description) %>
|
2013-02-28 11:36:12 +08:00
|
|
|
<% end %>
|
2014-10-31 02:26:35 +08:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% if @title %>
|
|
|
|
<% content_for :title do %><%= @title %><% end %>
|
|
|
|
<% elsif @category %>
|
2015-11-12 15:03:11 +08:00
|
|
|
<% content_for :title do %><%= @category.name %><% end %>
|
2014-01-15 00:16:10 +08:00
|
|
|
<% elsif params[:page] %>
|
|
|
|
<% content_for :title do %><%=t 'page_num', num: params[:page].to_i + 1 %><% end %>
|
2013-02-28 11:36:12 +08:00
|
|
|
<% end %>
|