Created
March 8, 2020 17:25
-
-
Save zookzook/db894738a68e59cda5ef103ae8c1c62c to your computer and use it in GitHub Desktop.
Paragraph
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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