All checks were successful
Deploy preview (main_watanabe) / deploy (push) Successful in 13s
31 lines
1.5 KiB
PHP
31 lines
1.5 KiB
PHP
@extends('layouts.general')
|
|
@section('content')
|
|
<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>
|
|
@endsection
|