-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (104 loc) · 5.87 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
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
<!DOCTYPE html>
<html lang="en" ng-app="thswebsite" ng-controller="RootController as rootCtrl">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Tokyo Hackerspace</title>
<!-- Bootstrap & Other CSS -->
<link href="https://fonts.googleapis.com/css?family=Yantramanav:300,400,700" rel="stylesheet">
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/css/style.min.css" rel="stylesheet">
<link href="assets/css/firefox.css" rel="stylesheet">
<link href="assets/css/ths-style.css" rel="stylesheet">
<!-- 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.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="h-style-2">
<!-- Sidebar Menu for Desktop and Mobile
============================================= -->
<div id="top" class="menu-wrap nicescroll">
<nav class="menu">
<!-- Menu for Mobile
============================================= -->
<aside class="side-menu visible-xs visible-sm">
<ul class="list-unstyled">
<div ng-include="'/assets/templates/' + rootCtrl.pathLang + '/common/navigation.html'"></div>
<div ng-include="'/assets/templates/common/lang_selector.html'"></div>
</ul><!-- list-unstyled -->
</aside><!-- side-menu -->
</nav><!-- menu -->
<button class="close-button hidden-xs" id="close-button">Close Menu</button>
</div>
<div id="site-header" class="header-style-2">
<div class="nav-pages-social hidden-xs">
<div class="container">
<div class="row">
<div class="col-md-6">
<ul class="nav navbar-nav" ng-include="'/assets/templates/' + rootCtrl.pathLang + '/common/navigation.html'">
</ul>
</div>
<div class="col-md-6">
<ul class="nav navbar-nav menu-right">
<li class="social-nav" ng-include="'/assets/templates/common/social_links.html'">
</li>
<li class="search-nav menu-item-has-children">
<ul ng-include="'/assets/templates/common/lang_selector.html'"></ul>
</li>
</ul>
</div>
</div>
</div>
</div><!-- nav-pages-social -->
<div class="logo-advert">
<div class="container ">
<div class="row">
<div class="row-table-desktop">
<div class="col-sm-3 col-md-4 col-lg-4 col-xs-12 col col-vm">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="toggle-categories menu-button visible-xs" id="open-button"><i class="fa fa-bars"></i><span>Menu</span></button><!-- toggle-categories -->
<a class="navbar-brand" href="/#/{{ rootCtrl.pathLang }}/"><img src="assets/svg/thslogo.svg" alt="Tokyo Hackerspace"></a>
</div>
</div>
<div class="col-sm-9 col-md-8 col-lg-8 col-xs-12 hidden-xs col col-vm text-right">
<!-- 970x90 Advertisement
============================================= -->
<!-- <a href="#"><img src="http://placehold.it/970x90/cecece?text=Advertisement+(970x90)" width="970" height="90" alt=""></a>
</div> -->
</div>
</div>
</div>
</div>
</div>
<div ng-view></div>
<div ng-include="'/assets/templates/common/footer.html'"></div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="assets/js/jquery-1.12.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.0/angular.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.0/angular-route.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<!-- script src="assets/js/blueimp/blueimp-helper.js"></script>
<script src="assets/js/blueimp/blueimp-gallery.js"></script>
<script src="assets/js/blueimp/blueimp-gallery-fullscreen.js"></script>
<script src="assets/js/blueimp/blueimp-gallery-indicator.js"></script>
<script src="assets/js/blueimp/blueimp-gallery-video.js"></script>
<script src="assets/js/blueimp/blueimp-gallery-vimeo.js"></script>
<script src="assets/js/blueimp/blueimp-gallery-youtube.js"></script>
<script src="assets/js/blueimp/jquery.blueimp-gallery.js"></script -->
<script src="assets/js/ths-tmpfix.js"></script>
<script src="assets/js/progressbar.js"></script>
<script src="assets/js/jqm.js"></script>
<script src="assets/js/woo.js"></script>
<!-- script src="assets/js/custom.min.js"></script -->
<script src="assets/js/ths/main.app.js"></script>
<script src="assets/js/ths/routes.app.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.3/require.min.js"></script>
</body>
</html>