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

24 lines
657 B
Plaintext
Raw Normal View History

2010-03-04 06:22:45 +00:00
<html>
<head>
<%= csrf_meta_tag %>
<%= javascript_include_tag "http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js",
"http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js",
:defaults %>
<%= stylesheet_link_tag 'scaffold', 'style' %>
</head>
<body>
2010-03-05 06:48:00 +00:00
<div id='header'>
Collab
</div>
2010-03-04 06:22:45 +00:00
<% flash.each_key do |flash_key| %>
2010-03-05 06:48:00 +00:00
<div id='flash_<%=h flash_key.to_s %>' class='flash'>
<%=h flash[flash_key] %>
2010-03-04 06:22:45 +00:00
</div>
<% end %>
2010-03-05 06:48:00 +00:00
<div id='wrapper'>
<div id='content'>
<%= yield %>
</div>
</div>
2010-03-04 06:22:45 +00:00
</body>
</html>