<body>
  <div id="headers">
    <%Jifty->web->link( url => "/", label => _(Jifty->config->framework('ApplicationName')))%>
    <h1 class="title"><% _($title) %></h1>
  </div>
  <& sidebar &>
  <div id="content">
    <a name="content"></a>
% if (Jifty->config->framework('AdminMode') ) {
<div class="warning admin_mode">
<%_('Alert')%>: <% Jifty->web->tangent( label => _('Administration mode is enabled.') , url => '/__jifty/admin/')%>
</div>
% }
  <% Jifty->web->render_messages %>
  <% $m->content |n%>
  <script type="text/javascript"><!--
  document.write('<div id="keybindings">');
  writeKeyBindingLegend();
  document.write('<\/div>');
  document.write('<div id="jifty-wait-message" style="display: none"><%_('Loading...')%><\/div>');
  --></script>
% Jifty::Mason::Halo->render_component_tree() if (Jifty->config->framework('DevelMode') );
</body>
</html>
%$m->notes('in_body' => 0);
<%args>
$title => ""
</%args>
<%init>
# First we set up the header. 
$m->comp( 'header', title => $title);
# now that we've printed out the header, we're inside the body, so it's safe to print
# halo markers.
$m->notes('in_body' => 1);
</%init>
