<%= link_to "", root_path, id: "logo" %>
  • <%= link_to "Home", statics_path %>
  • <%= link_to "News", blogposts_path %>
  • <%= link_to "Info", info_index_path %>
  • <%= link_to "Forums", forums_path %>
  • <%= link_to "Users", users_path %>
  • <%= link_to "Donate", donate_statics_path %>
> <% if current_user %> <%= link_to current_user.name, current_user %>
<%= link_to "Logout", logout_path %>
<%= link_to current_user.avatar(32), current_user %> <% else %> <%= link_to "Log in", login_path(return_path: request.env['PATH_INFO']), action: "new" %> | <%= link_to "Sign up", signup_path %> <% end %>