<%= link_to(root_path) do %>
<%= image_tag "logo" %>
<% end %>
> <% if !current_user.nil? %> <%= 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 "Register", register_path %> <% end %>
  • <%= link_to "BLOG", root_path, :class => "arrow" %>
  • <%= link_to "FORUM", nil, :class => "arrow" %>
  • <%= link_to "INFO", nil, :class => "arrow" %>
  • <%= link_to "DONATE", nil, :class => "arrow" %>