20 lines
567 B
Text
20 lines
567 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Taþ - Zeus WPIs drinking and billing system</title>
|
|
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
|
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
|
<%= csrf_meta_tags %>
|
|
</head>
|
|
|
|
<body>
|
|
<%= render "layouts/header" %>
|
|
<div class="container">
|
|
<div class="container" >
|
|
<%= yield %>
|
|
</div>
|
|
<%= render "layouts/footer" %>
|
|
<%= debug(params) if Rails.env.development? %>
|
|
</div>
|
|
</body>
|
|
</html>
|