blob: f9d574366589fbd11f7a1c9bc76dbc890d888453 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!DOCTYPE html>
<html lang="<%= I18n.locale %>">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="rails-env" content="<%= Rails.env %>" />
<%= csrf_meta_tags %>
<title><%= t('.title') %> <%= content_for?(:title) ? "| #{yield(:title)}" : "" %></title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
<%= javascript_include_tag "https://maps.googleapis.com/maps/api/js?key=#{ENV['GOOGLE_MAPS_API_KEY']}" if ENV['GOOGLE_MAPS_API_KEY'].present? %>
<%= yield(:head) %>
</head>
<body class="<%= current_layout %> <%= controller_name %> <%= action_name %>">
<%= render partial: "navigation" %>
<%= render partial: 'flash' %>
<%= render partial: 'loading' %>
<%= yield %>
<%= render partial: 'footer' %>
<%= include_gon %>
<script type="text/javascript" charset="utf-8">
<%= content_for :javascript %>
</script>
</body>
</html>
|