katbin/lib/ketbin_web/templates/page/pastes.html.heex
SphericalKat ebd9f7f52c
feat(pastes): add new page to show owned pastes
Signed-off-by: SphericalKat <amolele@gmail.com>
2024-05-09 19:29:13 +05:30

12 lines
409 B
Plaintext

<div class="flex relative flex-col w-full h-full">
<ul class="break-word py-4 h-full w-full overflow-y-auto">
<%= for paste <- @pastes do %>
<li class="flex flex-row items-center justify-between">
<a href={ Routes.page_path(@conn, :show, paste) } class="">
https://katb.in/v/<%= paste.id %>
</a>
</li>
<% end %>
</ul>
</div>