Example #1
0
echo theme::stylesheet('css/main');
echo theme::script('js/jquery');
echo theme::script('/js/application');
echo theme::render_script();
?>
</head>
<body id="<?php 
echo theme::body_id();
?>
" class="<?php 
echo theme::body_class();
?>
">
	<div id="wrapper">
		<?php 
echo theme::render_header();
?>
		<div id="header">
			<div id="logo" class="left">
				<h1><?php 
echo html::anchor(url::site(), store::name());
?>
</h1>
			</div>
			<div id="navigation" class="right">
				<ul>
					<?php 
foreach (links::get('main') as $link) {
    ?>
						<li><?php 
    echo $link->display();