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

21 lines
474 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">
2012-10-28 13:45:47 +00:00
<title><%= Setting.get('product_name') %></title>
2012-04-10 14:06:46 +00:00
<%= stylesheet_link_tag "application" %>
2016-03-11 14:34:43 +00:00
<%= stylesheet_link_tag "application-print", :media => 'print' %>
<% if Rails.configuration.assets.debug %>
2012-04-10 13:31:21 +00:00
<%= javascript_include_tag "application" %>
<% else %>
<%= javascript_include_tag "application", :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>