24 lines
664 B
Plaintext
24 lines
664 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><%= full_title(yield(:title)) %></title>
|
|
<%= stylesheet_link_tag "application", media: "all" %>
|
|
<%= include_gon %>
|
|
<%= javascript_include_tag "application" %>
|
|
<%= csrf_meta_tags %>
|
|
<%= render 'layouts/shim' %>
|
|
</head>
|
|
<body>
|
|
<%= render 'layouts/header' %>
|
|
<div class="container">
|
|
<% flash.each do |key, value| %>
|
|
<%= content_tag(:div, value, class: "alert alert-#{key}") %>
|
|
<% end %>
|
|
<%= yield %>
|
|
<%= render 'layouts/footer' %>
|
|
<!-- <%= debug(params) if Rails.env.development? %> -->
|
|
</div>
|
|
<%= yield :post_scripts %>
|
|
</body>
|
|
</html>
|