application.rhtml
928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<html>
<head>
<%= javascript_include_tag :defaults %>
<%= javascript_include_tag_template %>
<%= stylesheet_link_tag_template %>
<%= stylesheet_link_tag_theme %>
</head>
<body>
<%= image_tag 'loading.gif', :id => 'spinner', :style => "display:none; float:right;" %>
<div id="wrap">
<div id="frame">
<div id="menu">
<%= _('Skip to:') %>
<a href="#main_content"><%= _('Content') %></a> |
<a href="#sidebar"><%= _('Navigation') %></a> |
<a href="#footer"><%= _('Footer') %></a>
</div>
<div id="header">
<%= header %>
</div>
<div id='notice'>
<%= flash[:notice] %>
</div>
<a name='main_content'/>
<%= display_boxes(yield) %>
<div id="footer">
<a name='footer'/>
<%= footer %>
</div>
</div>
</div>
</body>
</html>