<%= stylesheet_link_tag "application" %> <%# javascript_include_tag "application" %> <%= csrf_meta_tags %> ぺったんR
<% if user_signed_in? %> <%= link_to "my home", '/home' %> <%= link_to "ログアウト", main_app.destroy_user_session_path, :method => :delete %> <% else %> <%= link_to "ログイン", main_app.new_user_session_path %> <% end %>
<% if admin_signed_in? %> <%= link_to "system", '/system' %> <%= link_to "ログアウト", main_app.destroy_admin_session_path, :method => :delete %> <% else %> <%= link_to "管理者", main_app.new_admin_session_path %> <% end %>

<%= notice %>

<%= alert %>

<%= link_to "browse", '/system/browse' %> <%= link_to "approve", '/system/waiting_list' %> <%= link_to "token", '/system/auth_token' %>
<%= yield %>