Files
old-saburly-confighub/web/app/views/layouts/application.html.erb

29 lines
527 B
Plaintext
Raw Normal View History

2016-02-20 09:33:32 +01:00
<!DOCTYPE html>
<html>
<head>
<title>Confighub</title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
2016-02-21 11:59:13 +01:00
<%= yield :javascript_includes %>
2016-02-20 09:33:32 +01:00
<%= csrf_meta_tags %>
</head>
<body>
2016-02-20 12:36:50 +01:00
<h1 id="logo">
2016-02-22 03:34:10 +01:00
<%= raw(breadcrumb(@record)) %>
2016-02-20 12:36:50 +01:00
</h1>
2016-02-22 03:34:10 +01:00
<div>
</div>
2016-02-20 12:36:50 +01:00
<div class="container-fluid">
2016-02-20 09:33:32 +01:00
<%= yield %>
2016-02-20 12:36:50 +01:00
</div>
2016-02-21 20:53:35 +01:00
<footer>
<br /> <br />
<p>
Saburly Configuration Hub (c) 2016
</p>
</footer>
2016-02-20 09:33:32 +01:00
</body>
</html>