Files
ecs-grader-laravel/resources/views/layouts/master.blade.php
2017-10-31 21:53:37 -05:00

17 lines
394 B
PHP

<!doctype html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>@yield('title')</title>
<link href='/css/app.css' rel='stylesheet'/>
</head>
<body>
<div class='container' id='app'>
@yield('content')
</div>
<script src='/js/app.js'></script>
</body>
</html>