2021-04-03 23:22:35 -04:00
|
|
|
<main class="container d-flex justify-content-center">
|
|
|
|
|
2021-04-05 16:51:59 -04:00
|
|
|
<div class="col-12 col-md-10 col-lg-9 col-xl-8 col-xxl-7 pb-2 mb-4 mt-3">
|
2021-04-03 23:22:35 -04:00
|
|
|
|
2021-04-05 21:40:43 -04:00
|
|
|
<%= if is_nil(@posts) do %>
|
2021-04-03 23:22:35 -04:00
|
|
|
|
2021-04-05 21:40:43 -04:00
|
|
|
<div class="post border-bottom border-gray pb-4 mb-3">
|
2021-04-03 23:22:35 -04:00
|
|
|
|
2021-04-05 21:40:43 -04:00
|
|
|
<h2 class="post-title fs-2 fw-600 mb-2">Nothing found.</h2>
|
2021-04-03 23:22:35 -04:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2021-04-05 21:40:43 -04:00
|
|
|
<% else %>
|
|
|
|
|
|
|
|
<%= for post <- @posts do %>
|
|
|
|
|
|
|
|
<div class="post border-bottom border-gray pb-4 mb-3">
|
|
|
|
|
|
|
|
<h2 class="post-title fs-2 fw-600 mb-2">
|
2021-04-05 22:48:30 -04:00
|
|
|
<%= @live_action == :show && post.title || live_redirect "#{post.title}", to: Routes.blog_path(@socket, :show, post) %>
|
2021-04-05 21:40:43 -04:00
|
|
|
</h2>
|
|
|
|
|
2021-04-06 19:52:08 -04:00
|
|
|
<div class="post-date font-monospace text-gray-300 <%= if length(post.tags) == 0, do: "mb-3" %>">
|
2021-04-05 21:40:43 -04:00
|
|
|
<%= icon_div @socket, "mdi-calendar-clock", [class: "icon baseline me-2"] %><%= format_date(post.date) %>
|
|
|
|
by <%= icon_div @socket, "mdi-account", [class: "icon baseline me-1"] %>Adam Piontek
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= if length(post.tags) > 0 do %>
|
2021-04-07 13:09:30 -04:00
|
|
|
<div class="post-tags fs-smaller mb-4">
|
2021-04-06 19:52:08 -04:00
|
|
|
<%= icon_div @socket, "mdi-tag-multiple", [class: "icon baseline text-gray-300"] %>
|
2021-04-05 21:40:43 -04:00
|
|
|
<%= for {tag, i} <- Enum.with_index(post.tags) do %>
|
2021-04-06 19:52:08 -04:00
|
|
|
<span class="text-gray-300">#</span><%= live_redirect tag, to: Routes.blog_path(@socket, :tag, tag) %><%= i < (length(post.tags) - 1) && "," || "" %>
|
2021-04-05 21:40:43 -04:00
|
|
|
<% end %>
|
|
|
|
</div>
|
2021-04-03 23:22:35 -04:00
|
|
|
<% end %>
|
2021-04-05 21:40:43 -04:00
|
|
|
|
|
|
|
<div class="post-lede">
|
|
|
|
<%= raw post.lede %>
|
2021-04-03 23:22:35 -04:00
|
|
|
</div>
|
|
|
|
|
2021-04-05 21:40:43 -04:00
|
|
|
<%= if @live_action == :show do %>
|
|
|
|
<div class="post-body">
|
|
|
|
<%= raw post.body %>
|
|
|
|
</div>
|
|
|
|
<% else %>
|
|
|
|
<p>
|
|
|
|
<%= live_redirect raw("Read more…"), to: Routes.blog_path(@socket, :show, post), class: "fs-6" %>
|
|
|
|
</p>
|
|
|
|
<% end %>
|
|
|
|
|
2021-04-03 23:22:35 -04:00
|
|
|
</div>
|
|
|
|
|
2021-04-05 21:40:43 -04:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% end %>
|
2021-04-03 23:22:35 -04:00
|
|
|
|
2021-04-05 21:40:43 -04:00
|
|
|
<%= if @live_action in [:index, :page] do %>
|
|
|
|
<nav class="d-flex justify-content-between" aria-label="Page navigation">
|
|
|
|
<%= if @page_prev do %>
|
|
|
|
<%= live_patch to: Routes.blog_path(@socket, :page, @page_prev) do %>
|
|
|
|
← Older
|
|
|
|
<% end %>
|
|
|
|
<% else %>
|
|
|
|
<div class="d-block"></div>
|
|
|
|
<% end %>
|
2021-04-03 23:22:35 -04:00
|
|
|
|
2021-04-05 21:40:43 -04:00
|
|
|
<%= if @page_next do %>
|
|
|
|
<%= live_patch to: @page_next == 1 && Routes.blog_path(@socket, :index) || Routes.blog_path(@socket, :page, @page_next) do %>
|
|
|
|
Newer →
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</nav>
|
2021-04-03 23:22:35 -04:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</main>
|