-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (95 loc) · 4.72 KB
/
index.html
File metadata and controls
121 lines (95 loc) · 4.72 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>愛知県西尾市内コロナワクチン接種機関</title>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KDD361PPP3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-KDD361PPP3');
</script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
<meta name="twitter:card" content="summary" />
<meta name="twitter:creator" content="@teradch" />
<meta property="og:url" content="https://tebenachi.github.io/vax-list/" />
<meta property="og:title" content="西尾市内のコロナワクチン予約可能な医療機関" />
<meta property="og:description" content="西尾市内にあるワクチン予約可能な個人病院。厚生労働省のデータに基づいて毎日更新。 全ての高齢者がコロナワクチン打てるまで!" />
<meta property="og:image" content="https://github.com/TeBenachi/vax-list/blob/main/img/Nishio-vax.jpg" />
</head>
<body>
<header>
<div class="container text-center">
<h1 class="fs-4 fw-bold">西尾市ロコナワクチン予約受付中の病院</h1>
</div>
</header>
<main>
<div class="container">
<div class="intro mx-auto">
<p>西尾市内にある<span class="fw-bold">ワクチン予約受付中の個人病院</span>。<a href="https://v-sys.mhlw.go.jp/search/" target="_blank">厚生労働省</a>のデータに基づいて毎日更新しています。
(<script>
var date = document.lastModified;
document.write("最終更新日時: "+date.toLocaleString( 'ja-JP'));
</script>)
<!-- Updated 3/28 -->
</p>
<p class="mb-0">西尾市集団会場についての詳細は<a href="https://www.city.nishio.aichi.jp/1006145/1006235/1006321.html">こちら</a>。
</p>
<div class="status-info mb-4">
<div class="row row-cols-3 bg-light text-dark small">
<div class="col-md-2 p-1">
<img src="https://v-sys.mhlw.go.jp/assets/images/icon/icon-reservation-status-available.svg">予約可能
</div>
<div class="col-md-2 p-1">
<img src="https://v-sys.mhlw.go.jp/assets/images/icon/icon-reservation-status-few.svg">若干空き有
</div>
<div class="col-md-2 p-1">
<img src="https://v-sys.mhlw.go.jp/assets/images/icon/icon-reservation-status-preparing.svg">予約準備中
</div>
<div class="col-md-2 p-1">
<img src="https://v-sys.mhlw.go.jp/assets/images/icon/icon-reservation-status-not-available.svg">予約不可能
</div>
<div class="col-md-2 p-1">
<img src="https://v-sys.mhlw.go.jp/assets/images/icon/icon-reservation-status-reservation-not-required.svg">予約不要
</div>
</div>
</div>
<p>(注)各機関により予約方法が違いますので、詳細は下の各備考をご覧ください。</p>
</div>
<div id="facilities" class="mt-4"></div>
</div>
</main>
<footer>
<div class="gotoTopButton">
<button class="gototop" href="#pageTop" onclick="topFunction()" id="myBtn" title="Go to top">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 11l3-3m0 0l3 3m-3-3v8m0-13a9 9 0 110 18 9 9 0 010-18z" /></svg>
</button>
</div>
<div class="container mx-auto">
<div class="footer-links mx-auto">
<div class="d-inline p-3 bg-white text-dark">
<a href="https://github.com/TeBenachi/vax-list"><img class="octocat" src="img/Octocat.jpg">Github</a>
</div>
<div class="d-inline p-3 bg-white text-dark">
<a href="https://www.mhlw.go.jp/chosakuken/index.html">厚生労働省の利用規約</a>
</div>
</div>
</div>
</footer>
<script src="assets/app.js"></script>
<script src="js/gotoTop.js"></script>
<script>
window.addEventListener('load', (event) => {
document.querySelectorAll('.vax-phone').forEach((el, index) => {
if (el.innerText.includes(0)) {
el.innerText = el.innerText.replace(/^(\d{4})/, '($1) ');
}
});
})
</script>
</body>
</html>