1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/layouts/application.html.erb

24 lines
666 B
Text
Raw Normal View History

2018-11-22 14:33:08 -05:00
<!DOCTYPE html>
2018-11-26 09:58:22 -05:00
<html lang="<%= I18n.locale %>">
2018-11-22 14:33:08 -05:00
<head>
2018-11-23 13:32:28 -05:00
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no, user-scalable=no"/>
2018-11-26 10:18:34 -05:00
<title><%= translate :title %></title>
2018-11-23 13:32:28 -05:00
2018-11-22 14:33:08 -05:00
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
</head>
<body>
2018-11-26 10:04:15 -05:00
<%= render 'navbar' %>
2018-11-29 23:13:59 -05:00
<div class="my-5">
<%= yield %>
</div>
2018-11-22 14:33:08 -05:00
</body>
</html>