Advertisement
Guest User

Untitled

a guest
Mar 12th, 2020
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.86 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6.     <meta name="description" content="bookeeping">
  7.     <meta name="author" content="Giovanni D'Apote">
  8.     <meta name="generator" content="Giovanni D'Apote">
  9.     <link rel="icon" href="#">
  10.  
  11.     <meta name="csrf-token" content="{{ csrf_token() }}">
  12.  
  13.     <title>Bookkeeping - @yield('title')</title>
  14.  
  15.     <!-- Bootstrap core CSS -->
  16.     <link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}" crossorigin="anonymous">
  17.     <link rel="stylesheet" href="{{ asset('css/bootstrap-datepicker.min.css') }}" crossorigin="anonymous">
  18.  
  19.     <!-- Custom styles for this template -->
  20.     <link href="{{ asset('css/dashboard.css') }}" rel="stylesheet">
  21.  
  22.  
  23.     <style>
  24.         .bd-placeholder-img {
  25.             font-size: 1.125rem;
  26.             text-anchor: middle;
  27.             -webkit-user-select: none;
  28.             -moz-user-select: none;
  29.             -ms-user-select: none;
  30.             user-select: none;
  31.         }
  32.  
  33.         @media (min-width: 768px) {
  34.             .bd-placeholder-img-lg {
  35.                 font-size: 3.5rem;
  36.             }
  37.         }
  38.     </style>
  39.     <!-- Custom styles for this template -->
  40.     <link href="{{ asset('css/dashboard.css') }}" rel="stylesheet">
  41. </head>
  42. <body>
  43.  
  44.  
  45. <div class="container-fluid">
  46.         @yield('content')
  47.  
  48. </div>
  49. <script src="{{ asset('js/jquery-3.4.1.min.js') }}" crossorigin="anonymous"></script>
  50. <script src="{{ asset('js/popper.min.js') }}"></script>
  51. <script src="{{ asset('js/bootstrap.bundle.min.js') }}" crossorigin="anonymous"></script>
  52. <script src="{{ asset('js/bootstrap-datepicker.min.js') }}"></script>
  53.  
  54. <!-- Icons -->
  55. <script src="{{ asset('js/feather.min.js') }}"></script>
  56. <script>
  57.     feather.replace()
  58. </script>
  59.  
  60.  
  61.  
  62. </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement