application.rhtml 928 Bytes
<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>