22 lines
696 B
PHP
22 lines
696 B
PHP
<!DOCTYPE html>
|
|
<!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]-->
|
|
<!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]-->
|
|
<!--[if !IE]><!-->
|
|
<html lang="en" class="no-js">
|
|
<!--<![endif]-->
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>SB Admin v2.0 in Laravel 5</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta content="width=device-width, initial-scale=1" name="viewport"/>
|
|
<meta content="" name="description"/>
|
|
<meta content="" name="author"/>
|
|
|
|
<link rel="stylesheet" href="{{ Theme::url("stylesheets/styles.css") }}" />
|
|
</head>
|
|
<body>
|
|
@yield('body')
|
|
<script src="{{ Theme::url("scripts/frontend.js") }}" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|