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

19 lines
398 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">
CHUB
</h1>
<div class="container-fluid">
2016-02-20 09:33:32 +01:00
<%= yield %>
2016-02-20 12:36:50 +01:00
</div>
2016-02-20 09:33:32 +01:00
</body>
</html>