blob: 4f0e3f58401902eba9dedb342daa1637c9dbb8a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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>
<%= for message <- @export.messages do %>
<section class="row">
<article class="column">
<%= message.text %>
</article>
<article class="column">
</article>
</section>
<% end %>
</section>
|