Advertisement
Guest User

Untitled

a guest
Feb 6th, 2013
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.48 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8">
  6. <title>Department of Ayurvadic</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <meta name="description" content="Free yii themes, free web application theme">
  9. <meta name="author" content="Webapplicationthemes.com">
  10. <link href='http://fonts.googleapis.com/css?family=Carrois+Gothic' rel='stylesheet' type='text/css'>
  11.  
  12. <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
  13. <!--[if lt IE 9]>
  14. <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  15. <![endif]-->
  16. <?php
  17. $baseUrl = Yii::app()->theme->baseUrl;
  18. $cs = Yii::app()->getClientScript();
  19. Yii::app()->clientScript->registerCoreScript('jquery');
  20. ?>
  21. <!-- Fav and Touch and touch icons -->
  22. <link rel="shortcut icon" href="<?php echo $baseUrl;?>/img/icons/favicon.ico">
  23. <link rel="apple-touch-icon-precomposed" sizes="144x144" href="<?php echo $baseUrl;?>/img/icons/apple-touch-icon-144-precomposed.png">
  24. <link rel="apple-touch-icon-precomposed" sizes="72x72" href="<?php echo $baseUrl;?>/img/icons/apple-touch-icon-72-precomposed.png">
  25. <link rel="apple-touch-icon-precomposed" href="<?php echo $baseUrl;?>/img/icons/apple-touch-icon-57-precomposed.png">
  26. <?php
  27. $cs->registerCssFile($baseUrl.'/css/bootstrap.min.css');
  28. $cs->registerCssFile($baseUrl.'/css/bootstrap-responsive.min.css');
  29. $cs->registerCssFile($baseUrl.'/css/abound.css');
  30. //$cs->registerCssFile($baseUrl.'/css/style-blue.css');
  31. ?>
  32. <!-- styles for style switcher -->
  33. <link rel="stylesheet" type="text/css" href="<?php echo $baseUrl;?>/css/style-blue.css" />
  34. <link rel="alternate stylesheet" type="text/css" media="screen" title="style2" href="<?php echo $baseUrl;?>/css/style-brown.css" />
  35. <link rel="alternate stylesheet" type="text/css" media="screen" title="style3" href="<?php echo $baseUrl;?>/css/style-green.css" />
  36. <link rel="alternate stylesheet" type="text/css" media="screen" title="style4" href="<?php echo $baseUrl;?>/css/style-grey.css" />
  37. <link rel="alternate stylesheet" type="text/css" media="screen" title="style5" href="<?php echo $baseUrl;?>/css/style-orange.css" />
  38. <link rel="alternate stylesheet" type="text/css" media="screen" title="style6" href="<?php echo $baseUrl;?>/css/style-purple.css" />
  39. <link rel="alternate stylesheet" type="text/css" media="screen" title="style7" href="<?php echo $baseUrl;?>/css/style-red.css" />
  40. <?php
  41. $cs->registerScriptFile($baseUrl.'/js/bootstrap.min.js');
  42. $cs->registerScriptFile($baseUrl.'/js/plugins/jquery.sparkline.js');
  43. $cs->registerScriptFile($baseUrl.'/js/plugins/jquery.flot.min.js');
  44. $cs->registerScriptFile($baseUrl.'/js/plugins/jquery.flot.pie.min.js');
  45. $cs->registerScriptFile($baseUrl.'/js/charts.js');
  46. $cs->registerScriptFile($baseUrl.'/js/plugins/jquery.knob.js');
  47. $cs->registerScriptFile($baseUrl.'/js/plugins/jquery.masonry.min.js');
  48. $cs->registerScriptFile($baseUrl.'/js/styleswitcher.js');
  49. ?>
  50. </head>
  51.  
  52. <body>
  53.  
  54. <section id="navigation-main">
  55. <!-- Require the navigation -->
  56. <?php require_once('tpl_navigation.php')?>
  57. </section><!-- /#navigation-main -->
  58.  
  59. <section class="main-body">
  60. <div class="container-fluid">
  61. <!-- Include content pages -->
  62. <?php echo $content; ?>
  63. </div>
  64. </section>
  65.  
  66. <!-- Require the footer -->
  67. <?php require_once('tpl_footer.php')?>
  68.  
  69. </body>
  70. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement