so-manager-dev.com/resources/views/layouts/app.blade.php

59 lines
2.7 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>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>@yield('title', 'So-Manager')</title>
<link href="{{ asset('assets/css/mypage/app.css') }}" rel="stylesheet">
<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 href="{{ asset('assets/css/mypage/slick.css') }}" rel="stylesheet">
<link href="{{ asset('assets/css/mypage/slick-theme.css') }}" rel="stylesheet">
<link rel="stylesheet" href="{{ asset('assets/css/mypage/font-awesome.min.css') }}">
<link href="{{ asset('assets/css/mypage/bootstrap.min.css') }}" rel="stylesheet">
<link rel="stylesheet" href="{{ asset('assets/css/mypage/all.css') }}">
<link rel="stylesheet" href="{{ asset('assets/css/mypage/picker.min.css') }}">
<link rel="stylesheet" href="{{ asset('assets/css/mypage/tablesorter-blue.css') }}" type="text/css" media="print, projection, screen">
<link href="{{ asset('assets/css/mypage/style.css') }}" rel="stylesheet">
<link href="{{ asset('assets/css/mypage/jquery-confirm.min.css') }}" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
@yield('head')
<style>
#main-news.jumbotron {
margin-bottom: 0 !important;
}
footer.jumbotron {
margin-top: 0 !important;
}
</style>
</head>
<body>
<div id="font-scale" class="my-page">
{{-- ヘッダー --}}
@include('partials.mypage_header')
{{-- メニューactive_menuを渡す --}}
@include('partials.mypage_menu', ['active_menu' => $active_menu ?? ''])
<main>
@yield('content')
</main>
{{-- フッターメニュー --}}
@include('partials.mypagefootermenu')
{{-- ニュース --}}
@include('partials.news')
{{-- フッター --}}
@include('partials.footer')
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="{{ asset('assets/js/vendor/popper.min.js') }}"></script>
<script src="{{ asset('assets/js/ie10-viewport-bug-workaround.js') }}"></script>
<script src="{{ asset('assets/js/vendor/slick/slick.js') }}"></script>
<script src="{{ asset('assets/js/vendor/jquery.tablesorter/jquery.tablesorter.min.js') }}" type="text/javascript"></script>
<script src="{{ asset('assets/js/commons.js') }}"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.bundle.min.js"></script>
@yield('scripts')
</body>
</html>