miniMVC/app/views/header.php

11 lines
324 B
PHP
Raw Normal View History

2012-01-13 11:58:06 -05:00
<head>
<?= $meta ?>
<?= $css ?>
<?= $head_tags ?>
<title><?= $title ?></title>
2012-05-03 13:26:09 -04:00
<?php if (!empty($base)) { ?><base href="<?=$base ?>" /><?php } ?>
2012-01-13 11:58:06 -05:00
<?= $head_tags ?>
<?= $head_js ?>
</head>
<body<?= (!empty($body_class)) ? "class=\"" . $body_class . "\"" : ""; ?><?= (!empty($body_id)) ? " id=\"" . $body_id . "\"" : ""; ?>>