1 <h2><%= h(@title) %></h2>
3 <% if @this_user && @this_user.image %>
4 <%= image_tag url_for_file_column(@this_user, "image") %>
10 <% if @user == @this_user %>
11 <%= link_to 'New diary entry', :controller => 'diary_entry', :action => 'new', :display_name => @user.display_name %>
15 <%= link_to 'New diary entry', :controller => 'diary_entry', :action => 'new', :display_name => @user.display_name %>
19 <h3>Recent diary entries:</h3>
21 <%= render :partial => 'diary_entry', :collection => @entries %>
23 <%= link_to "Older Entries", { :page => @entry_pages.current.next } if @entry_pages.current.next %>
24 <% if @entry_pages.current.next and @entry_pages.current.previous %>
27 <%= link_to "Newer Entries", { :page => @entry_pages.current.previous } if @entry_pages.current.previous %>
31 <%= rss_link_to :action => 'rss' %>
33 <% content_for :head do %>
34 <%= auto_discovery_link_tag :atom, :action => 'rss' %>