Adds foundation 6 🎉
This commit is contained in:
@@ -7,7 +7,6 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<title><%= content_for?(:title) ? yield(:title) : "Admin" %></title>
|
||||
<%= stylesheet_link_tag "application" %>
|
||||
<%= javascript_include_tag "vendor/modernizr" %>
|
||||
<%= javascript_include_tag "application", 'data-turbolinks-track' => true %>
|
||||
<%= content_for :head %>
|
||||
<%= csrf_meta_tags %>
|
||||
@@ -17,7 +16,7 @@
|
||||
<body class="admin">
|
||||
<%= render 'layouts/admin_header' %>
|
||||
|
||||
<div class="row">
|
||||
<div class="row expanded">
|
||||
|
||||
<div class="small-12 medium-3 column">
|
||||
<%= side_menu %>
|
||||
@@ -25,15 +24,19 @@
|
||||
|
||||
<div class="admin-content small-12 medium-9 column">
|
||||
<% if notice %>
|
||||
<div data-alert class="alert-box radius success">
|
||||
<a href="#" class="close" title="<%= t("application.close") %>">×</a>
|
||||
<div data-alert class="callout success" data-closable>
|
||||
<button class="close-button" aria-label="<%= t("application.close") %>" type="button" data-close>
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
<%= notice %>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<% if alert %>
|
||||
<div data-alert class="alert-box radius alert">
|
||||
<a href="#" class="close" title="<%= t("application.close") %>">×</a>
|
||||
<div data-alert class="callout alert" data-closable>
|
||||
<button class="close-button" aria-label="<%= t("application.close") %>" type="button" data-close>
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
<%= alert %>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
Reference in New Issue
Block a user