so-manager-dev.com/resources/views/layouts/general.blade.php
Yu Watanabe 0b449c4c60
All checks were successful
Deploy preview (main_watanabe) / deploy (push) Successful in 14s
1/29 一般資材改修
2026-01-29 17:03:43 +09:00

30 lines
1.2 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('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">
@if(request()->is('top*'))
@include('partials.general_top_header')
@yield('content')
@include('partials.general_top_footer')
@else
@include('partials.general_header')
@yield('content')
@include('partials.general_footer')
@endif
</div>
</body>
</html>