trabajo-afectivo/app/views/layouts/application.html.erb

24 lines
677 B
Text
Raw Normal View History

2012-04-10 13:31:21 +00:00
<!DOCTYPE html>
<html>
<head>
2014-07-14 16:54:25 +00:00
<meta charset="utf-8">
2016-09-30 14:44:25 +00:00
<meta name="viewport" content="width=1024">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
2012-10-28 13:45:47 +00:00
<title><%= Setting.get('product_name') %></title>
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
2016-03-14 15:44:28 +00:00
<%= stylesheet_link_tag "application", :media => 'all' %>
<%= stylesheet_link_tag "application-print", :media => 'print' %>
<% if Rails.configuration.assets.debug %>
<%= javascript_include_tag "application", nonce: true %>
<% else %>
<%= javascript_include_tag "application", nonce: true, :defer => 'defer' %>
<% end %>
2012-04-10 13:31:21 +00:00
<%= csrf_meta_tags %>
</head>
<body>
2012-04-10 13:31:21 +00:00
<%= yield %>
</body>
</html>