8 lines
230 B
Text
8 lines
230 B
Text
<.post_list :let={post} id="recent-posts" posts={@posts}>
|
|
<%= case post.kind do %>
|
|
<% :blog -> %>
|
|
<.link navigate={blog_path(post)}>{post.title}</.link>
|
|
<% :status -> %>
|
|
{post.body}
|
|
<% end %>
|
|
</.post_list>
|