allpro/app/views/layouts/application.html.erb

15 lines
296 B
Text
Raw Normal View History

2013-08-04 19:35:10 -04:00
<!DOCTYPE html>
<html>
<head>
<title>Allpro</title>
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
<%= csrf_meta_tags %>
</head>
<body>
<%= yield %>
</body>
</html>