layout.blade.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta name="csrf-token" content="{{ csrf_token() }}">
  8. <title>@yield('title')</title>
  9. <meta name="author" content="Tipask Team" />
  10. <meta name="copyright" content="2018 tipask.com" />
  11. <link href="{{ asset('/static/css/bootstrap/css/bootstrap.min.css') }}" rel="stylesheet" />
  12. <link href="{{ asset('/static/css/font-awesome/css/font-awesome.min.css') }}" rel="stylesheet" />
  13. <style>
  14. /* Error Page Inline Styles */
  15. body {
  16. padding-top: 50px;
  17. }
  18. /* Layout */
  19. .jumbotron {
  20. font-size: 21px;
  21. font-weight: 200;
  22. line-height: 2.1428571435;
  23. color: inherit;
  24. padding: 10px 0px;
  25. }
  26. /* Everything but the jumbotron gets side spacing for mobile-first views */
  27. .masthead, .body-content, {
  28. padding-left: 15px;
  29. padding-right: 15px;
  30. }
  31. /* Main marketing message and sign up button */
  32. .jumbotron {
  33. text-align: center;
  34. background-color: transparent;
  35. }
  36. /* Colors */
  37. .green {color:#5cb85c;}
  38. .orange {color:#f0ad4e;}
  39. .red {color:#d9534f;}
  40. </style>
  41. <!--[if lt IE 9]>
  42. <script src="http://cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  43. <script src="http://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
  44. <![endif]-->
  45. </head>
  46. <body>
  47. <div class="container">
  48. <div class="jumbotron">
  49. @yield('content')
  50. </div>
  51. </div>
  52. <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  53. <script src="{{ asset('/static/js/jquery.min.js') }}"></script>
  54. <!-- Include all compiled plugins (below), or include individual files as needed -->
  55. <script src="{{ asset('/static/css/bootstrap/js/bootstrap.min.js') }}"></script>
  56. </body>
  57. </html>