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

<%= notice %>

<%= alert %>

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