diff options
author | Guillermo Ramos | 2020-02-04 17:18:22 +0100 |
---|---|---|
committer | Guillermo Ramos | 2020-02-04 17:18:22 +0100 |
commit | 79e2f74db9f32b73171d24bf0ae971907b9b6271 (patch) | |
tree | e2dbc388df429810ad4cfe3e99e9567ae2e82ac7 /lib/waev_web/templates/exports | |
parent | ffc0bb5dab06874f2737a3def62835e45e0cd676 (diff) | |
download | waev-79e2f74db9f32b73171d24bf0ae971907b9b6271.tar.gz |
UI: getting closer
Diffstat (limited to 'lib/waev_web/templates/exports')
-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> |