mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
FEATURE: change layout when default page is category to tabular for _… (#7270)
This commit is contained in:
parent
df6ef856e6
commit
90fc2d15c4
|
@ -1,17 +1,34 @@
|
|||
<div class='category-list' itemscope itemtype='http://schema.org/ItemList'>
|
||||
<meta itemprop='itemListOrder' content='http://schema.org/ItemListOrderDescending'>
|
||||
<% @category_list.categories.each_with_index do |c, index| %>
|
||||
<div class='category' itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
|
||||
<meta itemprop='position' content='<%= index %>'>
|
||||
<meta itemprop='url' content='<%= "#{c.url}" %>'>
|
||||
<h2>
|
||||
<a href='<%= "#{c.url}" %>' itemprop='item'>
|
||||
<span itemprop='name'><%= c.name %></span>
|
||||
</a>
|
||||
</h2>
|
||||
<span itemprop='description'><%= c.description&.html_safe %></span>
|
||||
</div>
|
||||
<% end %>
|
||||
<div itemscope itemtype='http://schema.org/ItemList'>
|
||||
<table class='category-list'>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class='category'><%= t 'js.categories.category' %></th>
|
||||
<th class='topics'><%= t 'js.topic.list' %></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<meta itemprop='itemListOrder' content='http://schema.org/ItemListOrderDescending'>
|
||||
<% @category_list.categories.each_with_index do |c, index| %>
|
||||
<tr>
|
||||
<td class='category' style='border-color: #<%= c.color %>;'>
|
||||
<div itemprop='itemListElement' itemscope itemtype='http://schema.org/ListItem'>
|
||||
<meta itemprop='position' content='<%= index %>'>
|
||||
<meta itemprop='url' content='<%= c.url %>'>
|
||||
<h3>
|
||||
<a href='<%= c.url %>'>
|
||||
<span itemprop='name'><%= c.name %></span>
|
||||
</a>
|
||||
</h3>
|
||||
<div itemprop='description'><%= c.description&.html_safe %></div>
|
||||
</div>
|
||||
</td>
|
||||
<td class='topics'>
|
||||
<div title='<%= c.topic_count %> <%= t 'js.topic.list' %>'><%= c.topic_count %></div>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<% content_for :title do %><%= @title %><% end %>
|
||||
|
|
Loading…
Reference in New Issue
Block a user