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 %>
|
2017-03-03 04:06:47 +08:00
|
|
|
<%= link_to @category.parent_category.url, itemprop: 'item' do %>
|
|
|
|
<span itemprop='name'><%= @category.parent_category.name %></span>
|
|
|
|
<% end %>
|
|
|
|
|
2015-06-01 13:25:57 +08:00
|
|
|
<% end %>
|
2017-03-03 04:06:47 +08:00
|
|
|
|
2015-05-01 00:46:19 +08:00
|
|
|
<%= link_to @category.url, itemprop: 'item' do %>
|
|
|
|
<span itemprop='name'><%= @category.name %></span>
|
|
|
|
<% end %>
|
|
|
|
</h1>
|
|
|
|
<br/>
|
2017-03-03 04:06:47 +08:00
|
|
|
|
|
|
|
<% if params[:page].to_i == 0 && @subcategories.present? %>
|
2018-06-14 05:20:48 +08:00
|
|
|
<% @subcategories.each do |subcategory| %>
|
2018-06-29 19:41:04 +08:00
|
|
|
<a href='<%= subcategory.url %>'>
|
2018-06-14 05:20:48 +08:00
|
|
|
<span itemprop='name'><%= subcategory.name %></span>
|
|
|
|
</a>
|
|
|
|
<% if subcategory.description.present? %>
|
|
|
|
<span itemprop='description'><%= subcategory.description %></span>
|
2017-03-03 04:06:47 +08:00
|
|
|
<% end %>
|
2018-06-14 05:20:48 +08:00
|
|
|
<% end %>
|
2017-03-03 04:06:47 +08:00
|
|
|
<br/>
|
|
|
|
<% end %>
|
2015-05-01 00:46:19 +08:00
|
|
|
<% 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'>
|
2018-06-14 05:20:48 +08:00
|
|
|
<meta itemprop='position' content='<%= i %>'>
|
2018-06-29 19:41:04 +08:00
|
|
|
<meta itemprop='url' content='<%= t.url %>'>
|
2018-07-30 21:31:27 +08:00
|
|
|
<a href='<%= t.url %>'>
|
2015-02-13 19:34:22 +08:00
|
|
|
<span itemprop='name'><%= t.title %></span>
|
|
|
|
</a>
|
2016-11-15 04:32:59 +08:00
|
|
|
<span class="page-links"><%= page_links(t) %></span>
|
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-07-12 19:11:33 +08:00
|
|
|
<span class='posts' title='<%= t 'posts' %>'>(<%= t.posts_count %>)</span>
|
2018-08-08 09:15:49 +08:00
|
|
|
|
2018-08-09 13:07:18 +08:00
|
|
|
<% if t.pinned_until && (t.pinned_until > Time.zone.now) && (t.pinned_globally || @list.category) && t.excerpt %>
|
2018-08-08 09:15:49 +08:00
|
|
|
<p class='excerpt'>
|
|
|
|
<%= t.excerpt.html_safe %>
|
|
|
|
</p>
|
|
|
|
<% end %>
|
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 %>
|
2019-01-23 22:47:39 +08:00
|
|
|
<span itemprop='name'><a href='<%= @list.prev_topics_url %>' rel='prev' itemprop='url'><%= t 'prev_page' %></a> </span>
|
2015-02-13 19:34:22 +08:00
|
|
|
<% end %>
|
2019-01-23 22:47:39 +08:00
|
|
|
<span itemprop='name'><b><a href='<%= @list.more_topics_url %>' rel='next' itemprop='url'><%= t 'next_page' %></a></b></span>
|
2015-02-13 19:34:22 +08:00
|
|
|
</div>
|
2017-02-08 05:11:06 +08:00
|
|
|
|
|
|
|
<% content_for :head do %>
|
|
|
|
<% if params[:page].to_i > 0 %>
|
|
|
|
<link rel="prev" href="<%= @list.prev_topics_url -%>">
|
|
|
|
<% end %>
|
|
|
|
<link rel="next" href="<%= @list.more_topics_url -%>">
|
|
|
|
<% end %>
|
2014-03-01 18:16:40 +08:00
|
|
|
<% end %>
|
2013-02-13 14:43:21 +08:00
|
|
|
|
2017-03-03 04:06:47 +08:00
|
|
|
<%- end %> <!-- include_crawler_content? -->
|
2015-11-09 11:55:17 +08:00
|
|
|
|
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)) %>
|
2019-01-10 09:33:13 +08:00
|
|
|
<%= raw crawlable_meta_data(title: @category.name, description: @category.description, image: @category.uploaded_logo&.url.presence) %>
|
2013-02-28 11:36:12 +08:00
|
|
|
<% end %>
|
2017-08-29 01:11:34 +08:00
|
|
|
<% elsif @tag_id %>
|
|
|
|
<% content_for :head do %>
|
|
|
|
<%= raw crawlable_meta_data(title: @title, description: @description_meta) %>
|
|
|
|
<% end %>
|
2016-08-19 19:34:43 +08:00
|
|
|
<% else %>
|
|
|
|
<% content_for :head do %>
|
|
|
|
<%= raw crawlable_meta_data(title: SiteSetting.title, description: SiteSetting.site_description) %>
|
|
|
|
<% end %>
|
2014-10-31 02:26:35 +08:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% if @title %>
|
|
|
|
<% content_for :title do %><%= @title %><% end %>
|
|
|
|
<% elsif @category %>
|
2017-06-13 01:50:30 +08:00
|
|
|
<% content_for :title do %><%= @category.name %> - <%= SiteSetting.title %><% end %>
|
2017-10-04 12:04:42 +08:00
|
|
|
<% elsif params[:page].to_i > 1 %>
|
2017-06-13 01:50:30 +08:00
|
|
|
<% content_for :title do %><%=t 'page_num', num: params[:page].to_i + 1 %> - <%= SiteSetting.title %><% end %>
|
2013-02-28 11:36:12 +08:00
|
|
|
<% end %>
|