chiya/lib/chiya_web/controllers/page_html/note.html.heex

31 lines
810 B
Text
Raw Normal View History

<.header>
2023-03-13 03:26:39 +01:00
<%= @note.name %>
<:subtitle><%= pretty_date(@note.published_at) %></:subtitle>
</.header>
2023-03-13 03:26:39 +01:00
<section class="prose mt-8">
<%= Markdown.render(@note.content) |> raw %>
</section>
2023-03-13 05:59:40 +01:00
<%= if !Enum.empty?(@note.images) do %>
<.line />
<div class="flex flex-wrap gap-3">
<%= for image <- @note.images do %>
<article>
<a href={"#image-#{image.id}"}>
<img
class="rounded-lg w-28 "
src={Chiya.Uploaders.NoteImage.url({image.path, image}, :thumb_dithered)}
/>
</a>
<a href="#" class="lightbox" id={"image-#{image.id}"}>
<span style={"background-image: url('#{Chiya.Uploaders.NoteImage.url({image.path, image}, :full_dithered)}')"}>
</span>
</a>
</article>
<% end %>
</div>
<% end %>