Skip to content

Instantly share code, notes, and snippets.

@mstaack
Created October 30, 2015 19:09
Show Gist options
  • Save mstaack/3cad66e4dfd4117cea46 to your computer and use it in GitHub Desktop.
Save mstaack/3cad66e4dfd4117cea46 to your computer and use it in GitHub Desktop.
layout laravel
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Application</title>
<!-- Compiled Styles -->
<link href="/css/all.css" rel="stylesheet">
</head>
<body>
@include('layouts.partials.nav')
<div class="container">
@include('layouts.partials.errors')
@yield('content')
</div>
<!-- Compiled Scripts -->
<script src="/js/all.js"></script>
@yield('scripts')
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment