-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
54 lines (47 loc) · 2.82 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
<!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">
<title>仙台市営バスAPI サンプルセット</title>
<!-- Bootstrap -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" integrity="sha256-MfvZlkHCEqatNoGiOXveE8FIwMzZg4W85qfrfIFBfYc= sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ=="
crossorigin="anonymous">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery-1.11.2.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" integrity="sha256-Sk3nkD6mLTMOF0EOpNtsIry+s1CsaqQC1rVLTAy+0yc= sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ=="
crossorigin="anonymous"></script>
<div class="container">
<div class="jumbotron">
<h1>仙台市営バスAPI サンプル集</h1>
<p class="lead">仙台市営バスAPIを利用したサンプルアプリケーションを公開しています。</p>
<p><a class="btn btn-default btn-lg" href="http://bus.aobayama.net/" target="_blank">APIはこちら</a></p>
</div>
<div class="row">
<div class="col-md-4">
<h2>ルート検索サンプル</h2>
<p>簡易的なルート検索を行うことが出来ます。</p>
<p><a class="btn btn-primary" href="route/index.html" target="_blank">Try»</a></p>
</div>
<div class="col-md-4">
<h2>駅・路線情報表示サンプル</h2>
<p>駅および路線に関する情報を表示することが出来ます。どのようなデータが取得できるかを確かめる際などにお使いください。</p>
<p><a class="btn btn-primary" href="explorer/index.html" target="_blank">Try»</a></p>
</div>
</div>
<hr>
<div>
<p>このサイトは<a href="http://bus.aobayama.net/">仙台市営バスAPI</a>を用いて制作されています</p>
</div>
</body>
</html>