-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (49 loc) · 2.19 KB
/
Copy pathindex.html
File metadata and controls
50 lines (49 loc) · 2.19 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>大阪電気通信大学 バス時刻表</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<!-- Icon resources - General -->
<link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
<link rel="icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
<!-- Icon resources - Chrome -->
<link rel="icon" sizes="192x192" href="/designs/icon_192.png" />
<link rel="icon" sizes="64x64" href="/designs/icon_64.png" />
<!-- Icon resources - iOS Safari -->
<link rel="apple-touch-icon" sizes="180x180" href="/designs/icon_180.png" />
<link rel="apple-touch-icon" href="/designs/icon_64.png" />
<!---->
<link rel="stylesheet" href="css/mobile.css" />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/angular/angular.min.js"></script>
<script src="js/angular/angular-resource.min.js"></script>
<script src="js/angular/angular-route.min.js"></script>
<script src="js/app/services-diagram.js"></script>
<script src="js/app/app-mobile.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-61954953-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body ng-app="MobileApp">
<header>
<div>
<a ng-href="#/routes"><i class="fa fa-bus" style="margin-right: 0.5rem;"></i> OECU バス時刻表 β.ver</a>
</div>
</header>
<!-- Insert partial template from /templates/mobile/*.html -->
<ng-view></ng-view>
<!---->
<footer>
<div>
by <a href="https://sites.google.com/site/odentools/" target="_brank">OdenTools</a><font size="-2">(<a href="https://twitter.com/oecu_bus" target="_brank">Diagram project</a>)</font> & Visual Media Lab.
</div>
</footer>
</body>
</html>