2012-06-13 13:49:10 -04:00
|
|
|
|
|
|
|
<head>
|
|
|
|
<?= $meta ?>
|
2015-06-04 14:30:42 -04:00
|
|
|
<title><?= $title ?></title>
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
|
2012-06-13 13:49:10 -04:00
|
|
|
<?= $css ?>
|
|
|
|
<?= $head_tags ?>
|
|
|
|
<?php if (!empty($base)) { ?><base href="<?=$base ?>" /><?php } ?>
|
|
|
|
<?= $head_tags ?>
|
|
|
|
<?= $head_js ?>
|
|
|
|
</head>
|
2012-08-22 21:28:54 -04:00
|
|
|
<body<?= (!empty($body_class)) ? "class=\"" . $body_class . "\"" : ""; ?><?= (!empty($body_id)) ? " id=\"" . $body_id . "\"" : ""; ?>>
|
2015-06-04 14:30:42 -04:00
|
|
|
<?= $this->load_view('theme_header', [], TRUE); ?>
|