forked from mitchellg/CSC212-Group-Maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·187 lines (127 loc) · 6.36 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="eng" ng-app="groupmaker">
<head>
<meta charset="utf-8" />
<title>Group Maker</title>
<meta name="viewport" content="width=device-width initial-scale=1.0"/>
<!--bootstrap -->
<link rel="stylesheet" href="dist/css/bootstrap.min.css"/>
<link href='http://fonts.googleapis.com/css?family=Libre+Baskerville|Wendy+One' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="dist/css/custom.css"/>
<!-- Bootstrap core CSS -->
<link href="dist/css/bootstrap.css" rel="stylesheet">
<link rel="icon" type="image/png" href="img/GMfavicon.png">
</head>
<body>
<div class="container">
<!-- Fixed navbar -->
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><img src="img/GMHomebutton.png"></a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="author.php">Authoring Tool</a></li>
<li><a href="project_proposal.html">Proposal</a></li>
<li><a href="prototypes.html">Requirements</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="jumbotron">
<img src="lolcats.jpg" alt="" width="240" height="240" class="img-responsive pull-right img-rounded"/>
<h1>Group Maker</h1>
<p>Taking the hustle and stress out of group making for class projects.
</p>
<a href="http://ec2-54-205-135-226.compute-1.amazonaws.com/GroupMaker/author.php" target="_blank"><button type="button" class="btn btn-primary btn-lg">Get started</button></a>
<a href="https://github.com/mitchellg/CSC212-Group-Maker" target="_blank"><button type="button" class="btn btn-default navbar-btn">Github</button></a>
</div><!-- end of row 2 -->
<div class="row"> <!-- main article/aside row -->
<article class="col-lg-offset-1 col-sm-offset-1 col-lg-8 col-sm-7 col-lg-push-3 col-sm-push-4">
<h1>About This Project</h1>
<p>Group making for class projects is an often daunting process dreaded by most students. This is the story of seven brave men from the University of Rochester
who resolved to fix this problem to a great extent by automating the process. Follow us on this very fulfilling journey through these pages
</p>
<div>
<h3>Watch our video:</h3>
<video width="560" height="315" controls>
<source src="movie.webm" type="video/webm">
<source src="Sequence_01.webm" type="video/webm">
<source src="presentation.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</article>
<aside class="col-lg-3 col-sm-4 col-lg-pull-9 col-sm-pull-8">
<div id="speakerbox" ng-controller="myCtrl">
<h3>The Team</h3>
<ul class="pager">
<li class="previous"><a href="#" id="prev_btn">Previous</a></li>
<li class="next"><a href="#" id="next_btn">Next</a></li>
</ul>
<div id="carousel"></div>
</div>
</aside>
</div>
<!-- <footer class="row">
<p>
Project Mentor: Ryan Puffer
</p>
<p> Professor: M. Ehsan Hoque</p>
</footer> -->
</div>
<!-- javascript -->
<script id="speakerstpl" type="text/template">
{{#Demolition_Team}}
<div class="avatar">
<img src="img/{{shortname}}.jpg" alt="Photo of {{name}}" title="{{name}}"/>
<h3>{{name}}</h3>
<h4>{{Major}}</h4>
<h5>{{Year}}</h5>
<p>{{bio}}</p>
</div>
{{/Demolition_Team}}
</script>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.cycle/3.03/jquery.cycle.all.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/oj.mustache/0.7.2/oj.mustache.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.1/angular.min.js"></script>
<script src="dist/js/bootstrap.min.js"></script>
<script>
//$('.nav-tabs').find('a:first').tab('show');
$(function(){
$.getJSON('data.json', function(data){
var $carousel = $('#carousel');
var template = $('#speakerstpl').html(),
html = Mustache.to_html(template, data);
$carousel.html(html);
$carousel.cycle({
fx: 'fade',
pause: 1,
next: '#next_btn',
prev: '#prev_btn',
speed: 500,
timeout: 10000
});
});
});
</script>
<script>
angular.module('groupmaker', [])
.controller('myCtrl', ['$scope', '$http', function($scope,$http){
$http.get('data.json').success(function(data){
console.log(data);
$scope.details = data;
})
}]);
</script>
</body>
</html>