-
Notifications
You must be signed in to change notification settings - Fork 0
/
base_layout.html
executable file
·45 lines (45 loc) · 2.39 KB
/
base_layout.html
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
43
44
45
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Base Layout</title>
<link rel="shortcut icon" type="image/x-icon" href="styles/images/icon_logo.png" />
<link href="styles/super_layout.css" rel="stylesheet" type="text/css" />
<link href="styles/base.css" rel="stylesheet" type="text/css" />
<link href="styles/left_nav.css" rel="stylesheet" type="text/css" />
<link href="styles/prim_nav_admin.css" rel="stylesheet" type="text/css" />
<link href="styles/dimensions.css" rel="stylesheet" type="text/css" />
<script src="library/jquery_1.4.js" type="text/javascript"></script>
<script language="javascript" src="js/views.js" ></script>
</head>
<body class="app header_true">
<script>
$.header();
</script>
<div id="contentarea" class="contentarea">
<div id="cont_box" class="contentarea leftcontent_true">
<div id="left_nav" class="left_content contentarea header_true controlbar_true">
<!-- <h3 class="header">Leftcontent Header</h3> --> <!--Place the left header content here-->
<div class="contentarea"> <!--Place the left content of the page here -->
<!-- Left content-->
</div>
<div class="controlbar"> <!--Place the buttons,pagination,etc here -->
<!-- Left control-bar-->
</div>
</div>
<div class="right_content contentarea header_true controlbar_true">
<div id="ac_heading" class="header"> <!--Place the right header content here -->
<!-- Rightcontent Header-->
</div>
<div class="contentarea"> <!--Place the right content of the page here -->
<!--Right content-->
</div>
<div class="controlbar"> <!--Place the buttons,pagination,etc here -->
<!-- Right control-bar-->
</div>
</div>
</div>
</div>
</body>
</html>