template.php
21 lines
| 1.1 KiB
| text/x-php
|
HtmlPhpLexer
|
r0 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |||
<head> | |||
<title><?php echo $title; ?></title> | |||
<link rel="stylesheet" type="text/css" href="css/template.css"/> | |||
<link type="text/css" href="css/ui-lightness/jquery-ui-1.8.9.custom.css" rel="stylesheet" /> | |||
<link type="text/css" href="css/jQueryDatepicker.css" rel="stylesheet" /> | |||
<script type="text/javascript" src="js/jQuery/jquery-1.4.4.min.js"></script> | |||
<script type="text/javascript" src="js/jQuery/jquery-ui-1.8.9.custom.min.js"></script> | |||
<script type="text/javascript" src="js/jQuery/jquery-ui-timepicker-addon.js"></script> | |||
</head> | |||
<body> | |||
<div id="cabecera"><?php include('templates/includes/gotoListSubjects.php'); ?> </div> | |||
<div id="main_content_page"> | |||
<div id="secc_mnu"><?php include('templates/includes/menu.php'); ?></div> | |||
<div id="contenido"><?php include($content); ?></div> | |||
<div id="pie"></div> | |||
</div> | |||
</body> | |||
</html> |