gluster-web-interface/app/views/layouts/application.html.erb

34 lines
888 B
Plaintext
Raw Normal View History

2016-04-25 00:47:31 +00:00
<!DOCTYPE html>
<html>
<head>
2016-08-22 08:35:24 +00:00
<title><%= content_for?(:title) ? yield(:title) : "gluster-web" %> </title>
2016-06-17 15:15:44 +00:00
2016-08-20 05:43:24 +00:00
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => false %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => false %>
2016-06-17 15:15:44 +00:00
2016-04-25 00:47:31 +00:00
<%= csrf_meta_tags %>
<meta name="viewport" content="width=device-width, initial-scale=1">
2016-06-17 15:15:44 +00:00
2016-04-25 00:47:31 +00:00
</head>
<body class="nav-md">
2016-09-02 08:36:10 +00:00
<div class="container body">
<% flash.each do |key, value| %>
<div align="center" id="flash" class="alert alert-<%= key %>"><%= value %>
<a href="#" data-dismiss="alert" class="close">×</a>
</div>
<% end %>
<%= render "partials/sidenav" %>
<%= render "partials/topnav" %>
<%= yield %>
<%= render "partials/footer" %>
<%= javascript_include_tag 'footermanifest', 'data-turbolinks-track' => false %>
2016-04-25 00:47:31 +00:00
</body>
</html>