-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (36 loc) · 1.96 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta property="og:title" content="休日当番医(白山・野々市)" />
<title>休日当番医(白山・野々市)</title>
<meta property="og:type" content="website" />
<meta property="og:url" content="http://50river.github.io/holiday_doctor/" />
<meta property="og:description" content="白山・野々市の休日当番医を簡単に知る事ができます。" />
<!--OGPイメージ-->
<meta property="og:image" content="http://50river.github.io/holiday_doctor/img/ogp.jpg" width="1200" height="1200" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="apple-touch-icon-precomposed" href="img/apple-touch-icon-precomposed.png" />
<meta name="viewport" content="initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=0" />
<!-- キャッシュ秒指定 -->
<meta http-equiv="Expires" content="86400">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
</head>
<body>
<div id="date"></div>
<div class="panel-group" id="accordion"></div>
<div class="discription">このサイトは、<a href="http://i-search.pref.ishikawa.jp/toban/index.php?a=3">石川県医療・薬局機能情報提供システム</a>で公開されている情報を元に作成されています。また,ソースコードを<a href="https://github.com/50river/holiday_doctor">github</a>で公開しています。自分の町の休日当番医情報を閲覧できるwebアプリを作りたい方は、是非参考にしてください。</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="js/main.js"></script>
<script async src="js/bootstrap.min.js"></script>
<script type="text/javascript">
function scrollToElement(element){
var accordion_offset = $(element).offset().top;
$("html,body").animate({
scrollTop: accordion_offset
}, 50);
}
</script>
</body>
</html>