24 lines
657 B
Plaintext
24 lines
657 B
Plaintext
<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>
|
|
<div id='header'>
|
|
Collab
|
|
</div>
|
|
<% flash.each_key do |flash_key| %>
|
|
<div id='flash_<%=h flash_key.to_s %>' class='flash'>
|
|
<%=h flash[flash_key] %>
|
|
</div>
|
|
<% end %>
|
|
<div id='wrapper'>
|
|
<div id='content'>
|
|
<%= yield %>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |