37 lines
1.3 KiB
Elixir
37 lines
1.3 KiB
Elixir
<article class="max-w-lg mx-auto <%= post_class(@post) %> h-entry py-12">
|
|
<div>
|
|
<h1 class="text-4xl">
|
|
<%= link to: Routes.posts_path(@conn, :show, @post), class: "u-url" do %>
|
|
<%= raw @post.title %>
|
|
<% end %>
|
|
</h1>
|
|
<%= post_topmatter(@conn, @post) %>
|
|
</div>
|
|
<div class="<%= if @post.format, do: @post.format.slug %> e-content py-12">
|
|
<%= render "thumb.html", post: @post, thumbs: @thumbs %>
|
|
<%= @post |> Content.Post.content_page(@page) |> process_content |> raw %>
|
|
<%= case @post.categories || [] do %>
|
|
<% [] -> %>
|
|
<%= "" %>
|
|
<% categories -> %>
|
|
<div class="flex pt-6">
|
|
<h3 class="text-xl font-bold mr-4">Categories</h3>
|
|
|
|
<%= for term <- categories do %>
|
|
<%= link term.name, to: Routes.category_path(@conn, :index_posts, term.slug), class: "rounded-full bg-gray-300 px-4 py-1 mr-2" %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<%= render "pagination.html", conn: @conn, post: @post, current_page: @page %>
|
|
<%= if @post.comment_status == "open" do %>
|
|
<h3 class="text-3xl">Comments</h3>
|
|
<%= render "comments.html", post: @post, parent_id: 0, conn: @conn %>
|
|
<%=
|
|
render "reply_form.html",
|
|
comment_changeset: comment_changeset_for_post(@post),
|
|
post: @post,
|
|
conn: @conn
|
|
%>
|
|
<% end %>
|
|
</article>
|