tims-todo/application/views/header.php

17 lines
585 B
PHP
Raw Normal View History

2014-08-08 15:41:59 -04:00
<head>
<?= $meta ?>
2016-12-29 13:56:30 -05:00
<title><?= $title ?></title>
2014-08-08 15:41:59 -04:00
<link rel="icon" href="//todo.timshomepage.net/images/favicon.ico" type="image/x-icon" />
2016-12-29 13:56:30 -05:00
<link rel="stylesheet" href="/fonts/Puritan/stylesheet.css" />
<link rel="stylesheet" href="/css/todo.css" />
<link rel="stylesheet" href="/css/message.css" />
<link rel="stylesheet" href="/js/CLEditor/jquery.cleditor.css" />
<link rel="stylesheet" href="/css/jquery-ui.min.css" />
<?php /* <?= $css ?> */ ?>
2014-08-08 15:41:59 -04:00
<?= $head_js ?>
</head>
<body <?= (!empty($body_id)) ? " id=\"" . $body_id . "\"" : ""; ?>>
<?php $this->load->view('menu') ?>