so-manager-dev.com/resources/views/layouts/general.blade.php
Yu Watanabe 1524ec142d
All checks were successful
Deploy preview (main_watanabe) / deploy (push) Successful in 13s
9/9マージ
2025-09-09 11:32:09 +09:00

26 lines
1.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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('../bootstrap/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('../bootstrap/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>