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

32 lines
861 B
Plaintext
Raw Normal View History

2016-04-25 00:47:31 +00:00
<!DOCTYPE html>
<html>
<head>
2016-06-17 15:15:44 +00:00
<title><%= content_for?(:title) ? yield(:title) : "GentelellaOnRails" %> </title>
2016-04-25 00:47:31 +00:00
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
2016-06-17 15:15:44 +00:00
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
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">
<div class="container body">
2016-06-17 15:15:44 +00:00
<% flash.each do |key, value| %>
2016-08-19 15:22:36 +00:00
<div align="center" id="flash" class="alert alert-<%= key %>"><%= value %>
<a href="#" data-dismiss="alert" class="close">×</a>
</div>
2016-06-17 15:15:44 +00:00
<% end %>
2016-04-25 00:47:31 +00:00
<%= render "partials/sidenav" %>
<%= render "partials/topnav" %>
<%= yield %>
<%= render "partials/footer" %>
2016-06-17 15:15:44 +00:00
<%= javascript_include_tag 'footermanifest', 'data-turbolinks-track' => true %>
2016-04-25 00:47:31 +00:00
</body>
</html>