1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00
Files
wrestlingdev.com/app/views/layouts/application.html.erb

29 lines
739 B
Plaintext

<!DOCTYPE html>
<html>
<% if params[:print] %>
<head>
<title>Wrestling App</title>
</head>
<body>
<%= yield %>
</body>
<% else %>
<head>
<title>Wrestling App</title>
<%= stylesheet_link_tag "application", media: "all",
"data-turbolinks-track" => true %>
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
<%= csrf_meta_tags %>
<%= render 'layouts/shim' %>
</head>
<body>
<%= render 'layouts/header' %>
<div class="container">
<%= yield %>
<%= render 'layouts/footer' %>
<%= debug(params) if Rails.env.development? %>
</div>
</body>
<% end %>
</html>