<% content_for :menu_items do %>
  • Protect
  • <%= link_to( 'View', cloud_path(@cloud) ) %>
  • <% end %> <% content_for :cloud_title do %>
    <%= @cloud.title || 'Doubleclick to add a title' %>
    <% end %>
    <%# Template to clone %> <%= render :partial => '/topics/topic', :locals => { :topic => Topic.new( { :posx => -1000, :posy => -1000 } ) } %> <% for topic in @cloud.topics %> <%= render :partial => (topic.inherited ? '/topics/readonly_topic' : '/topics/topic'), :locals => { :topic => topic } %> <% end %> <% if @cloud.topics.empty? %>
    Doubleclick anywhere to get started
    <% end %>