bookmarks!

This commit is contained in:
2022-08-03 16:01:41 +02:00
parent 4bd3634abb
commit ae1dc3a216
5 changed files with 49 additions and 4 deletions

View File

@ -0,0 +1,16 @@
<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>