Advertisement
Guest User

layouts

a guest
Nov 12th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.18 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport"
  6.           content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8.     <title>Mental Health Workout</title>
  9.  
  10.     <link rel="stylesheet" type="text/css" href={{ asset('css/theme-styles.css') }};">
  11.    <link rel="stylesheet" type="text/css" href={{ asset('ss/blocks.css') }};">
  12.     <link rel="stylesheet" type="text/css" href={{ asset('css/widgets.css') }};">
  13.  
  14.  
  15.    <!--External fonts-->
  16.  
  17.    <link href="https://fonts.googleapis.com/css?family=Nunito:300,400,700,900" rel="stylesheet">
  18.     <link href="https://fonts.googleapis.com/css?family=Baloo+Paaji" rel="stylesheet">
  19.  
  20.     <!-- Styles for Plugins -->
  21.     <link rel="stylesheet" type="text/css" href={{ asset('css/swiper.min.css') }};">
  22.  
  23.    <!--Styles for RTL-->
  24.  
  25.    <!--<link rel="stylesheet" type="text/css" href="css/rtl.css">-->
  26. </head>
  27.    <body class="crumina-grid">
  28.  
  29.    @include('front.layout.header')
  30.  
  31.    @yield('content')
  32.  
  33.    @include('front.layout.footer')
  34.  
  35.    </body>
  36.  
  37.    @yield('scripts')
  38.  
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement