<%= stylesheet_link_tag "application" %> <%= javascript_include_tag "application" %> <%= csrf_meta_tags %>
<% if user_signed_in? %> <%= link_to "my home", :controller => '/home' %> <%= link_to "sign out", destroy_user_session_path, :method => :delete %> <% else %> <%= link_to "sign in", new_user_session_path %> <% end %>
<% if admin_signed_in? %> <%= link_to "system", :controller => '/system' %> <%= link_to "sign out", destroy_admin_session_path, :method => :delete %> <% else %> <%= link_to "sign in", new_admin_session_path %> <% end %>

<%= notice %>

<%= alert %>

<%= link_to 'comics', comics_path %> <%= link_to 'panels', panels_path %> <%= link_to 'original_pictures', original_pictures_path %> <%= link_to 'resource_pictures', resource_pictures_path %> <%= link_to 'panel_pictures', panel_pictures_path %> <%= link_to 'balloons', balloons_path %> <%= link_to 'speaches', speaches_path %> : <%= link_to 'speach_balloons', speach_balloons_path %> <%= link_to 'balloon_templates', balloon_templates_path %> <%= link_to 'speach_templates', speach_templates_path %> : <%= link_to 'artists', artists_path %> <%= link_to 'system_pictures', system_pictures_path %>
<%= yield %>