diaspora/app/views/blogs/show.html.haml
2010-06-24 20:45:49 -07:00

18 lines
304 B
Text

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