-<% content_for :head do %>
-<%= stylesheet_link_tag 'browse' %>
-<% end %>
-
-<% content_for :heading do %>
- <h2>
- <%= image_tag "#{@note.status}_note_marker.png", :alt => @note.status %>
- <%= t "browse.note.#{@note.status}_title", :note_name => @note.id %>
- </h2>
-<% end %>
-
-<%= render :partial => "navigation" %>
-
-<%= render :partial => "map", :object => @note %>
-
-<div class='column-1'>
-
- <% if @note.comments.find { |comment| comment.author.nil? } -%>
- <div class='browse-section common'>
- <p class="warning"><%= t "javascripts.notes.show.anonymous_warning" %></p>
- </div>
- <% end -%>
-
- <div class='browse-section common'>
- <div>
- <h4><%= t "browse.note.opened" %></h4>
- <p><%= note_event(@note.created_at, @note.author) %></p>
- </div>
-
+<h2><%= t "browse.note.#{@note.status}_title", :note_name => @note.id %>
+ <span class="icon close"></span>
+</h2>
+<div class="browse-section">
+ <span>
+ <%= t "browse.note.opened" %>:
+ <abbr><%= note_event(@note.created_at, @note.author) %></abbr> by
+ <% if @note.author.nil? %>
+ <%= t "browse.note.anonymous" %>
+ <% else %>
+ <%= note_author(@note.author) %>
+ <% end %>