<%= link_to root_path do %>
<%= image_tag "logo.png" %>
<% end %>
>
<% if current_user %>
<%= link_to current_user.name.truncate(14), current_user %>
<%= link_to "Logout", logout_path %>
<%= link_to image_tag(avatar_url(current_user.id, 32), :class => "avatar"), current_user %>
<% else %>
<%= link_to "Log in", login_path, :action => "new" %> | <%= link_to "Sign up", signup_path %>
<% end %>