Files
something-erlang/lib/something_erlang_web/live/bookmarks_live/show.html.heex
2022-08-22 11:33:27 +02:00

17 lines
293 B
Plaintext

<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>