<%= stylesheet_link_tag "test.css" %> <%= javascript_include_tag "application" %> <%= csrf_meta_tags %>
<% if user_signed_in? %> <%= link_to t('home.index.title'), '/home' %> <%= link_to t('home.comics.title'), '/home/comic' %> <%= link_to t('home.panels.title'), '/home/panel' %> <%= link_to t('home.panel_pictures.title'), '/home/panel_picture' %> <%= link_to h(truncate(@author.name, :length => 12)), main_app.author_path(@author) %> <% if @artist %> <%= link_to t('home.pictures.title'), main_app.original_pictures_path %> <%= link_to h(truncate(@artist.name, :length => 12)), main_app.artist_path(@artist) %> <% end %> <%= link_to t('home.configure.title'), '/home/configure' %> <%= link_to t('home.sign_out.title'), main_app.destroy_user_session_path, :method => :delete %> <% else %> <%= link_to "sign in", main_app.new_user_session_path %> <% end %>
<% if admin_signed_in? %> <%= link_to "system", '/system' %> <%= link_to "browse", '/system/browse' %> <%= link_to "approve", '/system/waiting_list' %> <%= link_to "token", '/system/auth_token' %> layout: <%= link_to "test", '/system/test_layout' %> <%= link_to "production", '/system/production_layout' %> <%= link_to "sign out", main_app.destroy_admin_session_path, :method => :delete %> <% else %> <%= link_to "sign in", main_app.new_admin_session_path %> <% end %>
user.resources <%= link_to 'comics', main_app.comics_path %> <%= link_to 'stories', main_app.new_story_path %> <%= link_to 'panels', main_app.panels_path %> <%= link_to 'original_pictures', main_app.original_pictures_path %> <%= link_to 'resource_pictures', main_app.resource_pictures_path %> <%= link_to 'panel_pictures', main_app.panel_pictures_path %> : <%= link_to 'authors', main_app.authors_path %> <%= link_to 'artists', main_app.artists_path %>
system.resources <%= link_to 'speech_balloon_templates', main_app.speech_balloon_templates_path %> <%= link_to 'license_groups', main_app.license_groups_path %> <%= link_to 'licenses', main_app.licenses_path %> <%= link_to 'colors', main_app.colors_path %> <%= link_to 'system_pictures', main_app.system_pictures_path %>
<%= yield %> <%= javascript_tag 'var server_result=' + @server_result.to_json + ';' %>