]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/templates/default/base.tt2
When checking postgresql version use postgres db
[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
11         <!-- Hide the non-xul menu for now.  
12              Will probably remove at some point since it's perpetually out 
13              of sync and exists solely as a development tool
14
15         <div id='oils-base-header-menu-block'>
16             [%# INCLUDE default/menu.tt2 #%]
17         </div>
18         -->
19
20         <div id='oils-base-header-auto-login-block'>
21             [% INCLUDE default/header.tt2 %]
22         </div>
23     </div>
24     <div id="oils-base-main-block" dojoType="dijit.layout.LayoutContainer" layoutAlign="client">
25         <!--
26         <div id="oils-base-navigate-block" dojoType="dijit.layout.ContentPane" layoutAlign="left">
27         </div>
28         -->
29         <div id="oils-base-content-block" dojoType="dijit.layout.ContentPane" layoutAlign="client">
30             [% content %]
31         </div>
32     </div>
33     <!--
34     <div id="oils-base-footer-block">
35         [% INCLUDE default/footer.tt2 %]
36     </div>
37     -->
38 </div>
39 [% END %]