Project

General

Profile

Download (790 Bytes) Statistics
| Branch: | Tag: | Revision:
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3

    
4
<?php
5
/* 
6
 *   if user has selected a custom template, use it.
7
 *   otherwise default to pfsense tempalte
8
 */
9
if($config['theme'] <> "")
10
	$g['theme'] = $config['theme'];
11
else
12
	$g['theme'] = "pfsense";
13
?>
14

    
15
<html>
16
<head>
17
    <title><?=gentitle($pgtitle);?></title>
18
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
19
    <link rel="stylesheet" href="/themes/<?php echo $g['theme']; ?>/all.css" media="all" />
20
    <link rel="stylesheet" type="text/css" href="/niftycssprintCode.css" media="print">
21
	<script type="text/javascript" src="/themes/<?php echo $g['theme']; ?>/loader.js"></script>
22
<?php if (!isset($closehead)){ ?>
23
</head>
24
<?php } ?>
(53-53/133)