How to call CSS files using Kohana PHP 3.3

3

I'm new to Kohana Framework and would like to know how to call a CSS file.

    
asked by anonymous 29.01.2015 / 13:52

1 answer

4

You can use URL :: base:

<?php echo URL::base(); ?>

Example: <link src="<?=url::base()?>assets/css/layout.css" />

    
29.01.2015 / 14:00