diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/waev_web/templates/exports/show.html.eex | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/lib/waev_web/templates/exports/show.html.eex b/lib/waev_web/templates/exports/show.html.eex index 4f0e3f5..b8cb69c 100644 --- a/lib/waev_web/templates/exports/show.html.eex +++ b/lib/waev_web/templates/exports/show.html.eex @@ -1,21 +1,21 @@ ID: <%= @id %> -<section class="phx-hero"> - <section class="row"> - <article class="column"> - <h2><%= @export.left %></h2> - </article> - <article class="column"> - <h2><%= @export.right %></h2> - </article> - </section> +<div class="container"> + <div class="row"> + <div class="column column-50"> + <%= @export.left %> + </div> + <div class="column column-50"> + <%= @export.right %> + </div> + </div> <%= for message <- @export.messages do %> - <section class="row"> - <article class="column"> + <div class="row"> + <div class="column column-75"> <%= message.text %> - </article> - <article class="column"> - </article> - </section> + <br /> + <%= message.date %> + </div> + </div> <% end %> -</section> +</div> |