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

18 lines
362 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 %>
<%= 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>