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

15 lines
202 B
Plaintext
Raw Normal View History

2011-04-03 20:21:05 +04:00
<!DOCTYPE html>
<html>
<head>
2011-06-13 16:54:56 +04:00
<title>Beathaven</title>
<%= stylesheet_link_tag :all %>
<%= javascript_include_tag :defaults %>
<%= csrf_meta_tag %>
2011-04-03 20:21:05 +04:00
</head>
<body>
2011-06-13 16:54:56 +04:00
<%= yield %>
2011-04-03 20:21:05 +04:00
</body>
</html>