22 lines
616 B
PHP
22 lines
616 B
PHP
<!doctype html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{{ config('app.name', 'Laravel') }}</title>
|
|
|
|
<!-- Fonts -->
|
|
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
|
|
|
|
<!-- Styles -->
|
|
<link rel="stylesheet" href="{{ asset('css/main.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
</div>
|
|
|
|
<script src="{{ asset('js/app.js') }}"></script>
|
|
</body>
|
|
</html>
|