mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 21:47:59 +01:00
23 lines
389 B
Text
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") %>
|