mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 12:43:39 +08:00
12 lines
460 B
Plaintext
12 lines
460 B
Plaintext
|
<%- if @list && @list.topics.present? %>
|
||
|
<table class='topics-list' data-embed-state='loaded' <%- if @embed_id %>data-embed-id="<%= @embed_id %>"<%- end %>>
|
||
|
<%- @list.topics.each do |t| %>
|
||
|
<tr class='topic-list-item'>
|
||
|
<td class='main-link'>
|
||
|
<a target="_parent" href="<%= t.url %>" class="title raw-link raw-topic-link" data-topic-id="<%= t.id %>"><%= t.title %></a>
|
||
|
</td>
|
||
|
</div>
|
||
|
<%- end %>
|
||
|
</table>
|
||
|
<%- end %>
|