21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-06-03 08:05:06 +02:00
chexpire/app/views/layouts/application.html.erb

19 lines
411 B
Plaintext
Raw Normal View History

2018-05-23 10:32:04 +02:00
<!DOCTYPE html>
<html>
<head>
<title>Chexpire</title>
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
2018-05-23 13:53:02 +02:00
<%= stylesheet_pack_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
2018-05-23 11:55:13 +02:00
<%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %>
2018-05-23 10:32:04 +02:00
</head>
<body>
<%= render "shared/navbar" %>
2018-05-23 15:46:10 +02:00
<%= render "shared/notices" %>
2018-05-23 10:32:04 +02:00
<%= yield %>
</body>
</html>