Advertisement
Guest User

index.blade.php

a guest
Oct 25th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  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.  
  8. <title>Laravel</title>
  9.  
  10. <script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
  11. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
  12.  
  13. <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
  14.  
  15. <style>
  16.  
  17. html, body {
  18. background-color: #fff;
  19. color: #636b6f;
  20. font-family: 'Raleway', sans-serif;
  21. font-weight: 100;
  22. height: 100vh;
  23. margin: 0;
  24. }
  25.  
  26. .full-height {
  27. height: 100vh;
  28. }
  29.  
  30. .flex-center {
  31. align-items: center;
  32. display: block;
  33. justify-content: center;
  34. }
  35.  
  36. .position-ref {
  37. position: relative;
  38. }
  39.  
  40. </style>
  41.  
  42. </head>
  43.  
  44. <body>
  45.  
  46. <div class="flex-center position-ref full-height">
  47.  
  48. <div>
  49.  
  50. <ul class="nav nav-tabs" role="tablist">
  51.  
  52. <li role="presentation" class="active"><a href="#home" aria-controls="home" role="tab" data-toggle="tab">Home</a></li>
  53. <li role="presentation"><a href="#about" aria-controls="about" role="tab" data-toggle="tab">About</a></li>
  54.  
  55. </ul>
  56.  
  57. <div class="tab-content" style="height: 400px;">
  58.  
  59. <div role="tabpanel" class="tab-pane active" id="home" style="height: 100%;">
  60.  
  61. {!! Mapper::render()!!}
  62.  
  63. </div>
  64.  
  65. <div role="tabpanel" class="tab-pane" id="about">
  66.  
  67. <p>About</p>
  68.  
  69. </div>
  70.  
  71. </div>
  72.  
  73. </div>
  74.  
  75. </div>
  76.  
  77. </body>
  78.  
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement