Skip to content

Instantly share code, notes, and snippets.

@zookzook
Created March 8, 2020 17:25
Show Gist options
  • Select an option

  • Save zookzook/db894738a68e59cda5ef103ae8c1c62c to your computer and use it in GitHub Desktop.

Select an option

Save zookzook/db894738a68e59cda5ef103ae8c1c62c to your computer and use it in GitHub Desktop.
Paragraph
<div class="row">
<article class="column">
<%= @paragraph["text"] |> strip_margin() |> markdown() |> raw() %>
</article>
</div>
<%= if length(@paragraph["images"]) > 0 do %>
<div class="row">
<%= for img <- @paragraph["images"] do %>
<div class="column">
<figure>
<img src="<%= Routes.static_path(@conn, img["src"]) %>" alt="<%= img["caption"] %>"/>
<figcaption class=""><%= img["caption"] %></figcaption>
</figure>
</div>
<% end %>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment