Advertisement
Remote

Untitled

Feb 1st, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.15 KB | None | 0 0
  1. <?php foreach ($styles as $file => $type) echo HTML::style(STATICSERV.$file, array('media' => $type)), "\n" ?>
  2. <link rel=stylesheet media=screen href=http://fonts.googleapis.com/css?family=Open+Sans:400,700,300,300italic,700italic,800,800italic,600italic,600,400italic&subset=latin,latin-ext>
  3. <link rel=stylesheet media=screen href=http://fonts.googleapis.com/css?family=Courgette&subset=latin,latin-ext>
  4. <style>
  5. <?php
  6. /*
  7. * Jak nie chcesz grzecznie współpracować i wczytać plików przez blokadę w .htaccess
  8. * to zrobimy ci include i postawimy na swoim oddzielając pliki i pracując po swojemu.. ;)
  9. */
  10. include Kohana::find_file('views/templates/assets/css','bootstrap.min','css');
  11. include Kohana::find_file('views/templates/assets/css','font-awesome.min','css');
  12. include Kohana::find_file('views/templates/assets/css','animations','css');
  13. include Kohana::find_file('views/templates/assets/css','main','css');
  14. include Kohana::find_file('views/templates/assets/css','bootstrap-responsive','css');
  15. include Kohana::find_file('views/templates/assets/css','main','css');
  16. ?>
  17. </style>
  18. <?php foreach ($scripts as $file) echo HTML::script(STATICSERV.$file), "\n" ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement