Listing posts

<% @posts.each do |post| %> <% end %>
<%= link_to 'Show', post %> <%= link_to 'Edit', edit_post_path(post) %> <%= link_to 'Destroy', post, :confirm => 'Are you sure?', :method => :delete %>

<%= link_to 'New Post', new_post_path %>

Text area test

<%= cktext_area_tag("test_area", "Ckeditor") %>

Text area test with options

<%= cktext_area_tag("content", "Ckeditor", :cols => 10, :rows => 20, :ckeditor => {:toolbar => 'Easy'}) %>