diaspora/app/views/blogs/show.html.haml

18 lines
289 B
Text

- title "Blog"
%p
%strong Title:
= @blog.title
%p
%strong Body:
= @blog.body
%p
%strong Owner:
= @blog.owner
%p
= link_to "Edit", edit_blog_path(@blog)
|
= link_to "Destroy", @blog, :confirm => 'Are you sure?', :method => :delete
|
= link_to "View All", blogs_path