26 lines
1.0 KiB
PHP
26 lines
1.0 KiB
PHP
<!doctype html>
|
||
<html lang="ja">
|
||
<head>
|
||
<title>|So-Manager</title>
|
||
<meta charset="utf-8">
|
||
<link href="https://cdnjs.cloudflare.com/ajax/libs/typicons/2.0.9/typicons.css" rel="stylesheet">
|
||
<link href="https://fonts.googleapis.com/earlyaccess/roundedmplus1c.css" rel="stylesheet" />
|
||
<link rel="icon" href="{{ asset('assets/img/favicon.ico') }}">
|
||
<link href="{{ asset('assets//css/bootstrap.min.css') }}" rel="stylesheet">
|
||
<link href="{{ asset('assets/css/style.css') }}" rel="stylesheet">
|
||
<link href="{{ asset('assets/css/app.css') }}" rel="stylesheet">
|
||
<script src="{{ asset('assets/js/jquery.min.js') }}"></script>
|
||
<script src="{{ asset('assets/js/ie-emulation-modes-warning.js') }}"></script>
|
||
<script src="{{ asset('assets/js/bootstrap.min.js') }}"></script>
|
||
</head>
|
||
<body>
|
||
<div id="font-scale" class="home">
|
||
@include('partials.header')
|
||
@yield('content')
|
||
@include('partials.news')
|
||
@include('partials.banner')
|
||
@include('partials.footer')
|
||
</div>
|
||
</body>
|
||
</html>
|