Sha256: 64b77fa265bbc2a36544d084c16c682686d3d787565f6a7ad5d1b3d604f4f61a

Contents?: true

Size: 952 Bytes

Versions: 5

Compression:

Stored size: 952 Bytes

Contents

<!DOCTYPE html>
<html>
<head>
  <% if content_for? :title -%>
      <title><%= Boxroom.configuration.site_name %> | <%= content_for :title %></title>
  <% else -%>
      <title><%= Boxroom.configuration.site_name %></title>
  <% end -%>
  <%= stylesheet_link_tag 'boxroom/application' %>
  <%= javascript_include_tag 'boxroom/application' %>
  <%= csrf_meta_tag %>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<%= render 'boxroom/shared/header' %>

<% if flash[:notice] -%>
    <div class="notification is-success" id="notice">
      <%= flash[:notice] %>
    </div>
<% end -%>
<% if flash[:alert] -%>
    <div class="notification is-danger" id="notice">
      <%= flash[:alert] %>
    </div>
<% end -%>

<section class="section">
  <div class="container">
    <%= yield %>
  </div>
</section>

<%= render 'boxroom/shared/footer' if Boxroom.configuration.show_footer %>
</body>
</html>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
boxroom-0.0.5 app/views/layouts/boxroom/application.html.erb
boxroom-0.0.4 app/views/layouts/boxroom/application.html.erb
boxroom-0.0.3 app/views/layouts/boxroom/application.html.erb
boxroom-0.0.2 app/views/layouts/boxroom/application.html.erb
boxroom-0.0.1 app/views/layouts/boxroom/application.html.erb