このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
076server/resources/views/theme/techsuwa/bash.blade.php

27 行
647 B
PHP
Raw 通常表示 履歴

2018-02-07 23:19:05 +09:00
<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
2021-12-15 00:25:36 +09:00
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
2018-02-07 23:19:05 +09:00
2021-12-15 00:25:36 +09:00
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
2018-02-07 23:19:05 +09:00
2021-12-15 00:25:36 +09:00
<title>{{ config('app.name', 'Laravel') }}</title>
2018-02-07 23:19:05 +09:00
2021-12-15 00:25:36 +09:00
<style>
body {
background: url('/img/bash/81004208_p0.jpg') no-repeat;
background-position: center 25%;
}
</style>
</head>
<body>
@yield('content')
2018-02-07 23:19:05 +09:00
2021-12-15 00:25:36 +09:00
<!-- Scripts -->
<script src="{{ asset('js/app.js') }}"></script>
</body>
2018-02-07 23:19:05 +09:00
</html>