13 lines
486 B
Plaintext
13 lines
486 B
Plaintext
<section class="content">
|
|
<div id="blog_post_<%= @blog_post.id %>" class="blog_post">
|
|
<h2><%= @blog_post.title %></h2>
|
|
<p><%= @blog_post.content %></p>
|
|
<div class="created_at">
|
|
<%= link_to "Edit", edit_blog_post_path(@blog_post) if @blog_post.user == current_user %>
|
|
<%= "Updated at #{updated_at(@blog_post)} | " %>
|
|
<%= link_to @blog_post.created_at.strftime("%Y-%m-%d %H:%M"), @blog_post %>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<%= t(".discuss_post_html") %>
|