tap/app/views/layouts/application.html.erb

25 lines
708 B
Plaintext
Raw Normal View History

2014-11-06 13:46:59 +00:00
<!DOCTYPE html>
<html>
2014-12-09 13:39:27 +00:00
<head>
2014-12-09 20:03:37 +00:00
<title>Taþ - Zeus WPIs drinking and billing system</title>
2014-12-09 13:39:27 +00:00
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
2014-11-06 13:46:59 +00:00
2015-03-09 12:17:41 +00:00
<% if current_user && current_user.koelkast? && !Rails.env.development? %>
2015-02-20 14:05:11 +00:00
<body oncontextmenu="return false">
<% else %>
<body>
<% end %>
2015-03-19 13:59:37 +00:00
<%= render 'layouts/header' %>
2014-12-09 13:39:27 +00:00
<div class="container">
2015-03-19 13:59:37 +00:00
<div class="container">
<%= yield %>
2014-12-09 21:36:24 +00:00
</div>
2015-03-19 13:59:37 +00:00
<%= render 'layouts/footer' %>
2014-12-09 21:36:24 +00:00
<%= debug(params) if Rails.env.development? %>
2014-12-09 13:39:27 +00:00
</div>
</body>
2014-11-23 20:12:31 +00:00
</html>