-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
77 lines (74 loc) · 3.84 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!doctype html>
<html lang="ja">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="./css/bootstrap.min.css">
<title>HOTEL PLANISPHERE - テスト自動化練習サイト</title>
</head>
<body class="bg-light">
<h1 class="text-center text-uppercase d-none d-lg-block display-3 my-5">Hotel Planisphere</h1>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark py-lg-4">
<a class="navbar-brand text-uppercase font-weight-bold d-lg-none" href="#">Hotel Planisphere</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
</div>
</nav>
<div class="container">
<div class="row bg-white my-3 px-3 shadow-sm">
<div class="col">
<h2 class="my-4">This site is a sandbox to practice test automation.</h2>
<h3 class="my-4">このサイトはテスト自動化の学習用の練習サイトです。</h3>
</div>
</div>
<div class="row bg-white my-3 px-3 py-3 shadow-sm">
<div class="col">
<div class="row">
<div class="col-12 col-md-6 col-lg-6">
<div class="card shadow-sm">
<div class="card-body">
<h4 class="card-title">English (U.S.)</h4>
<a href="./en-US/" class="card-link btn btn-primary">Go to Top Page</a>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-6">
<div class="card shadow-sm">
<div class="card-body">
<h4 class="card-title">日本語<small class="text-muted"> Japanese</small></h4>
<a href="./ja/" class="card-link btn btn-primary">トップページへ</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row bg-white my-3 px-3 py-3 shadow-sm">
<div class="col">
<h5><strong class="text-danger">Notice / お知らせ</strong></h5>
<p>Our website will migrate to a new domain, <a href="https://hotel-example-site.takeyaqa.dev/">https://hotel-example-site.takeyaqa.dev/</a>, starting from December 1, 2024.<br>
During December, the old domain (<a href="https://hotel.testplanisphere.dev/">https://hotel.testplanisphere.dev/</a>) will remain accessible, but starting January 1, 2025, visitors will be automatically redirected to the new domain.</p>
<p>当ウェブサイトは、2024年12月1日より新しいドメイン <a href="https://hotel-example-site.takeyaqa.dev/">https://hotel-example-site.takeyaqa.dev/</a> に移行いたします。<br>
2024年12月中は旧ドメイン(<a href="https://hotel.testplanisphere.dev/">https://hotel.testplanisphere.dev/</a>)でもアクセス可能ですが、2025年1月1日以降は自動的に新しいドメインへリダイレクトされます。<br>
</div>
</div>
</div>
<footer class="text-center py-5">
<div class="container">
<ul class="list-inline">
<li class="list-inline-item"><a href="https://github.com/takeyaqa/hotel-example-site">GitHub</a></li>
</ul>
<p class="text-muted">© 2020-2025 Takeshi Kishi</p>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="./dist/vendor/jquery-3.7.1.min.js"></script>
<script src="./dist/vendor/bootstrap.bundle.min.js"></script>
<script src="./dist/index.bundle.js"></script>
</body>
</html>