scinote-web/app/views/layouts/application.html.erb
2018-05-28 11:36:37 +02:00

64 lines
2.4 KiB
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta data-hook="head-js">
<title><%=t "head.title", title: (yield :head_title) %></title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= favicon_link_tag "favicon.ico" %>
<%= favicon_link_tag "favicon-16.png", type: "image/png", size: "16x16" %>
<%= favicon_link_tag "favicon-32.png", type: "image/png", size: "32x32" %>
<%= favicon_link_tag "favicon-48.png", type: "image/png", size: "48x48" %>
<%= stylesheet_pack_tag 'fontawesome' %>
<%= csrf_meta_tags %>
</head>
<body
class="<%= yield :body_class %>"
<% if user_signed_in? && current_team.present? %>
data-atwho-users-url="<%= atwho_users_team_path(current_team) %>"
data-atwho-task-url="<%= atwho_my_modules_team_path(current_team) %>"
data-atwho-project-url="<%= atwho_projects_team_path(current_team) %>"
data-atwho-experiment-url="<%= atwho_experiments_team_path(current_team) %>"
data-atwho-repositories-url="<%= atwho_repositories_team_path(current_team) %>"
data-atwho-rep-items-url="<%= atwho_rep_items_team_path(current_team) %>"
data-atwho-menu-items="<%= atwho_menu_items_team_path(current_team) %>"
<% end %>
>
<span style="display: none;" data-hook="body-js"></span>
<span style="display: none;" data-hook="application-body-html"></span>
<!-- About us modal -->
<%= render "shared/about_modal" %>
<%= render "shared/file_preview_modal.html.erb" %>
<%= render "shared/navigation" %>
<% unless user_signed_in? %>
<%= render partial: 'shared/flash_alerts',
locals: { flash: flash, notice: notice, alert: alert } %>
<% end %>
<%= render "shared/left_menu_bar" if user_signed_in? && current_user.teams.exists? %>
<div id="content-wrapper">
<% if user_signed_in? && current_user.teams.empty? %>
<!-- If member of no teams -->
<div class="jumbotron">
<h2><%=t 'general.no_teams.title' %></h2>
<p data-hook="general-no-teams-text"><%=t 'general.no_teams.text' %></p>
</div>
<% else %>
<%= yield :content %>
<% end %>
</div>
<script>
// GLOBALS
window.IN_REQUEST = false;
</script>
</body>
</html>