<html>
<head>
<title>
<?php echo isset($title)?
$title : '';?></title>
<!-- 加载全部页面都需要的CSS、JS等 -->
<link rel="stylesheet" href="
<?php echo $this->config->item('assets_url');?>css/global.css" type="text/css">
<link rel="stylesheet" href="
<?php echo $this->config->item('assets_url');?>jqueryplugins/jbreadcrumb/Styles/BreadCrumb.css" type="text/css">
<!-- header 加载页面专属的CSS、JS等 -->
<?php if (isset($header_asset) && is_array($header_asset)):?>
<?php foreach ($header_asset as $type => $addrs):?>
<?php if($type == 'css'):?>
<?php foreach ($addrs as $addr):?>
<link rel="stylesheet" href="
<?php echo $addr;?>" type="text/css">
<?php endforeach;?>
<?php elseif($type == 'js'):?>
<?php foreach ($addrs as $addr):?>
<script type="text/javascript" src="
<?php echo $addr;?>"></script>
<?php endforeach;?>
<?php endif; ?>
<?php endforeach;?>
<?php endif;?>
</head>