PageRenderTime 24ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/Streaming-Safe-for-Kids/resources/views/layouts/app.blade.php

https://gitlab.com/rocs/Streaming-Safe-for-Kids
PHP | 93 lines | 86 code | 6 blank | 1 comment | 0 complexity | 03fea3bb6e8968e37348f444ccd48920 MD5 | raw file
  1. <!DOCTYPE html>
  2. <!--
  3. This is a starter template page. Use this page to start your new project from
  4. scratch. This page gets rid of all links and provides the needed markup only.
  5. -->
  6. <html lang="en">
  7. <head>
  8. <meta charset="UTF-8">
  9. <title>Streamin Safe of Kids</title>
  10. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  11. <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
  12. <!-- CSRF Token -->
  13. <meta name="csrf-token" content="{{ csrf_token() }}">
  14. <link href="{{ asset('/css/all.css') }}" rel="stylesheet" type="text/css" />
  15. <script type="text/javascript">
  16. // 2. This code loads the IFrame Player API code asynchronously.
  17. var tag = document.createElement('script');
  18. tag.src = "https://www.youtube.com/iframe_api";
  19. var firstScriptTag = document.getElementsByTagName('script')[0];
  20. firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
  21. </script>
  22. <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  23. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  24. <!--[if lt IE 9]>
  25. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  26. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  27. <![endif]-->
  28. <script>
  29. window.Laravel = <?php echo json_encode([
  30. 'csrfToken' => csrf_token(),
  31. ]); ?>
  32. </script>
  33. </head>
  34. <!--
  35. BODY TAG OPTIONS:
  36. =================
  37. Apply one or more of the following classes to get the
  38. desired effect
  39. |---------------------------------------------------------|
  40. | SKINS | skin-blue |
  41. | | skin-black |
  42. | | skin-purple |
  43. | | skin-yellow |
  44. | | skin-red |
  45. | | skin-green |
  46. |---------------------------------------------------------|
  47. |LAYOUT OPTIONS | fixed |
  48. | | layout-boxed |
  49. | | layout-top-nav |
  50. | | sidebar-collapse |
  51. | | sidebar-mini |
  52. |---------------------------------------------------------|
  53. -->
  54. <body class="skin-purple sidebar-mini">
  55. <div id="app">
  56. <div class="wrapper">
  57. @include('layouts.partials.mainheader')
  58. @include('layouts.partials.sidebar')
  59. <!-- Content Wrapper. Contains page content -->
  60. <div class="content-wrapper">
  61. @include('layouts.partials.contentheader')
  62. <!-- Main content -->
  63. <section class="content">
  64. <!-- Your Page Content Here -->
  65. @yield('main-content')
  66. </section><!-- /.content -->
  67. </div><!-- /.content-wrapper -->
  68. @include('layouts.partials.controlsidebar')
  69. @include('layouts.partials.footer')
  70. </div><!-- ./wrapper -->
  71. </div>
  72. @section('scripts')
  73. @include('layouts.partials.scripts')
  74. @show
  75. </body>
  76. </html>