All checks were successful
Deploy preview (main_watanabe) / deploy (push) Successful in 11s
50 lines
2.2 KiB
PHP
50 lines
2.2 KiB
PHP
<!doctype html>
|
||
<html lang="ja">
|
||
<head>
|
||
<title>|So-Manager</title>
|
||
<meta charset="utf-8">
|
||
<link rel="icon" href="assets/img/favicon.ico">
|
||
<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="../bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||
<link href="assets/css/style.css" rel="stylesheet">
|
||
<script src="assets/js/ie-emulation-modes-warning.js"></script>
|
||
</head>
|
||
<body id="" class="">
|
||
<div id="font-scale" class="home">
|
||
@include('layouts.header');
|
||
<!-- ▼ メイン部分 ▼ -->
|
||
<section id="" class="container mt20 mb20">
|
||
<h2 class="text-success text-center">サイトマップ</h2>
|
||
<div class="row">
|
||
<div class="col-12 col-lg-8 offset-0 offset-lg-2 mt20 mb20">
|
||
<nav class="row">
|
||
<ul class="sitemap col-lg">
|
||
<li><a href="{{route('swo1_1')}}">HOME</a></li>
|
||
<li><a href="{{route('swo16_1')}}">かんたんご利用ガイド</a></li>
|
||
<li><a href="{{route('swo5_1')}}">駐輪場検索</a></li>
|
||
<li><a href="{{route('swo6_1')}}">よくある質問</a></li>
|
||
<li><a href="{{route('swo7_1')}}">お問い合わせ</a>
|
||
<ul>
|
||
<li><a href="{{route('swo14_1')}}">「個人情報」の取り扱いについて</a></li>
|
||
<li><a href="{{route('swo15_1')}}">開示対象個人情報に関する開示事項</a></li>
|
||
</ul>
|
||
</li>
|
||
</ul>
|
||
<ul class="sitemap col-lg">
|
||
<li><a href="{{route('swo10_1')}}">運営会社</a></li>
|
||
<li><a href="{{route('swo11_1')}}">個人情報保護方針</a></li>
|
||
<li><a href="{{route('swo13_1')}}">特定商取引法に基づく表示</a></li>
|
||
<li><a href="{{route('swo12_1')}}">利用規約</a></li>
|
||
</ul>
|
||
</nav>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
<!-- ▲ メイン部分 ▲ -->
|
||
@include('layouts.info');
|
||
@include('layouts.footer');
|
||
</div>
|
||
</body>
|
||
</html>
|