philomena/lib/philomena_web/templates/page/index.html.heex
2024-06-01 23:50:36 -04:00

23 lines
389 B
Text

<h1>
Pages
</h1>
<table class="table">
<thead>
<tr>
<th>
Title
</th>
</tr>
</thead>
<tbody>
<%= for static_page <- @static_pages do %>
<tr>
<td>
<%= link(static_page.title, to: ~p"/pages/#{static_page}") %>
</td>
</tr>
<% end %>
</tbody>
</table>
<br />
<%= link("New static page", to: ~p"/pages/new") %>