1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<?php
3$cultureElements = explode('_', $sf_user->getCulture());
4?>
5<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $cultureElements[0]; ?>" lang="<?php echo $cultureElements[0]; ?>">
6  <head>
7    <!-- Mimic Internet Explorer 8 -->
8    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" >
9    <?php include_http_metas() ?>
10    <?php include_metas() ?>
11    <?php include_title() ?>
12        <link href="<?php echo theme_path('images/favicon.ico')?>" rel="icon" type="image/gif"/>
13
14	<link href="<?php echo public_path('../../themes/orange/css/style.css')?>" rel="stylesheet" type="text/css"/>
15        <link href="<?php echo public_path('../../themes/orange/css/layout.css')?>" rel="stylesheet" type="text/css"/>
16	<link href="<?php echo public_path('../../themes/orange/css/message.css')?>" rel="stylesheet" type="text/css"/>
17	<!--[if lte IE 6]>
18	<link href="<?php echo public_path('../../themes/orange/css/IE6_style.css')?>" rel="stylesheet" type="text/css"/>
19	<![endif]-->
20	<!--[if IE]>
21	<link href="<?php echo public_path('../../themes/orange/css/IE_style.css')?>" rel="stylesheet" type="text/css"/>
22	<![endif]-->
23    <!--[if IE 9]>
24        <link href="<?php echo public_path('../../themes/orange/css/IE9_style.css')?>" rel="stylesheet" type="text/css"/>
25    <![endif]-->
26    <!--[if IE 8]>
27        <link href="<?php echo public_path('../../themes/orange/css/IE8_style.css')?>" rel="stylesheet" type="text/css"/>
28    <![endif]-->
29	<script type="text/javascript" src="<?php echo public_path('../../themes/orange/scripts/style.js');?>"></script>
30
31	<script type="text/javascript" src="<?php echo public_path('../../scripts/archive.js');?>"></script>
32    <script type="text/javascript" src="<?php echo public_path('../../scripts/jquery/jquery.js')?>"></script>
33    <script type="text/javascript" src="<?php echo public_path('../../scripts/jquery/jquery.validate.js')?>"></script>
34    <script type="text/javascript" src="<?php echo public_path('../../scripts/jquery/jquery.form.js')?>"></script>
35    <script type="text/javascript" src="<?php echo public_path('../../scripts/jquery/jquery.tablesorter.js')?>"></script>
36    <?php echo javascript_include_tag('orangehrm.validate.js'); ?>
37
38    <?php echo include_javascripts();?>
39    <?php echo include_stylesheets();?>
40
41  </head>
42  <body>
43
44
45                  <?php echo $sf_content ?>
46
47
48
49    <?php $skipRoundBorder = $sf_request->getAttribute('skipRoundBorder');
50    if (!isset($skipRoundBorder)) { ?>
51	<script type="text/javascript">
52//<![CDATA[
53
54    	if (document.getElementById && document.createElement) {
55	 			roundBorder('outerbox');
56		}
57
58
59
60
61//]]>
62	</script>
63    <?php } ?>
64  </body>
65</html>
66