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

47 行
1.8 KiB
PHP
Raw Blame 履歴

このファイルには曖昧(ambiguous)なUnicode文字が含まれています

このファイルには、他の文字と見間違える可能性があるUnicode文字が含まれています。 それが意図的なものと考えられる場合は、この警告を無視して構いません。 それらの文字を表示するにはエスケープボタンを使用します。

<?php
$user = getUser();
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{{ app()->getLocale() }}" lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}" />
<title>テクニカル諏訪子</title>
<!-- Styles -->
@include('theme.'.env('THEME').'.component.favicon')
@include('theme.'.env('THEME').'.component.colors')
</head>
<body>
<div class="fixed-top navbar-expand" style="background-color: #aaaa00; color: #fcfcfc; display: none; padding: 20px; z-index: 5000;" id="jswarning">注意JavsScriptはONです。安全・安心の為、JavaScriptをOFFにしてお願い致します。</div>
<script type="text/javascript">document.getElementById('jswarning').style.display = 'block';</script>
@include('theme.'.env('THEME').'.component.navbar')
<main id="app">
<section>
<div class="container">
@include('theme.'.env('THEME').'.component.header')
<div class="row">
<div class="col-md-2" style="padding-bottom: 32px;">
@include('theme.'.env('THEME').'.component.menu')
</div>
<div class="col-md">
@include('theme.'.env('THEME').'.component.contentedit')
@yield('content')
</div>
<div class="col-md-2" style="padding-bottom: 32px;">
@include('theme.'.env('THEME').'.component.servicemenu')
@if ($user)
@include('theme.'.env('THEME').'.component.usermenu')
@endif
</div>
</div>
@include('theme.'.env('THEME').'.component.footer')
</div>
</section>
</main>
</body>
</html>