Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created February 2, 2019 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uno-de-piera/b53bb8df353b2f58c86e9d02308b0c1d to your computer and use it in GitHub Desktop.
Save uno-de-piera/b53bb8df353b2f58c86e9d02308b0c1d to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons' rel="stylesheet">
<link rel='stylesheet' href="{{ asset('css/app.css') }}" />
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ config('app.name', 'Laravel') }}</title>
@stack('styles')
</head>
<body>
<div id='app'>
<v-app>
<div id='content'>
@yield('content')
</div>
</v-app>
</div>
@include('footer')
<script src="{{ asset('js/app.js') }}" defer></script>
@stack('scripts')
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment