2022-08-03 16:01:41 +02:00
|
|
|
<table class="table w-full">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th></th>
|
|
|
|
<th>Title</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<%= for thread <- @bookmarks do %>
|
|
|
|
<tr>
|
|
|
|
<th><%= raw thread.icon %></th>
|
|
|
|
<td><%= raw thread.title %></td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</tbody>
|
|
|
|
</table>
|