]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/templates/default/base.tt2
base_uri as a misnomer. changed to base_path. added support for overrideing the...
[working/Evergreen.git] / Open-ILS / web / templates / default / base.tt2
1 [% WRAPPER 'base.tt2' %]
2 <script type="text/javascript">
3  dojo.require("dijit.layout.LayoutContainer");
4  dojo.require("dijit.layout.ContentPane");
5 </script>
6
7 <!-- define the basic page structure -->
8 <div id="oils-base-body-block" class="tundra" dojoType="dijit.layout.LayoutContainer"> 
9     <div id="oils-base-header-block" dojoType="dijit.layout.ContentPane" layoutAlign="top">
10         <div id='oils-base-header-menu-block'>
11             [% INCLUDE default/menu.tt2 %]
12         </div>
13         <div id='oils-base-header-auto-login-block'>
14             [% INCLUDE default/header.tt2 %]
15         </div>
16     </div>
17     <div id="oils-base-main-block" dojoType="dijit.layout.LayoutContainer" layoutAlign="client">
18         <div id="oils-base-navigate-block" dojoType="dijit.layout.ContentPane" layoutAlign="left">
19         </div>
20         <div id="oils-base-content-block" dojoType="dijit.layout.ContentPane" layoutAlign="client">
21             [% content %]
22         </div>
23     </div>
24     <div id="oils-base-footer-block" dojoType="dijit.layout.ContentPane" layoutAlign="bottom">
25         [% INCLUDE default/footer.tt2 %]
26     </div>
27 </div>
28 [% END %]