예제 #1
0
    echo $sidebar;
    ?>
			</div>
			<div class="col-md-9">
				<?php 
    echo $content;
    ?>
			</div>
		</div>
		<?php 
} else {
    ?>
		<?php 
    echo $content;
    ?>
		<?php 
}
?>
	</div>
</div>

<!-- footer scripts -->
<?php 
echo CCAsset::code('js', 'vendor');
echo CCAsset::code('js', 'theme');
echo CCAsset::code('js');
echo $js;
?>
</body>

</html>
예제 #2
0
파일: CCAsset.php 프로젝트: clancats/core
 /**
  * CCAsset::code tests
  */
 public function test_code_gen()
 {
     CCAsset::macro('test', '<:uri>');
     CCAsset::holder('root')->path = '/';
     CCAsset::add('foo.test', 'root');
     CCAsset::add('bar.test', 'root');
     $this->assertEquals('</foo.test></bar.test>', CCAsset::code('test', 'root'));
 }