-
Notifications
You must be signed in to change notification settings - Fork 2
/
mentors.html
116 lines (90 loc) · 4.14 KB
/
mentors.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Awesome Inc - The Accelerator</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="description" content="Awesome Inc - a seed-stage accelerator for web and mobile startups.">
<meta name="author" content="">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<!-- Styles -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/exo-font.css" rel="stylesheet">
<link href="css/journal-font.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link href="css/flexslider.css" rel="stylesheet">
<link href="css/jquery.fancybox-1.3.4.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Script files -->
<script src="js/jquery.js"></script>
<script src="js/jquery.easing-1.3.pack.js"></script>
<script src="js/jquery.flexslider.js"></script>
<script src="js/jquery.fancybox-1.3.4.pack.js"></script>
<script src="js/jquery.mousewheel-3.0.4.pack.js"></script>
<script type="text/javascript" src="js/angular.js"></script>
<script type="text/javascript" src="js/mentors.js"></script>
</head>
<body data-spy="scroll" data-target=".navbar" onResize="window.location.href = window.location.href" ng-app >
<!-- NAVBAR ############################################### -->
<div class="navbar navbar-fixed-top" id="navbar">
<div class="navbar-inner">
<div class="container">
<a href="index.html#home" class="brand hidden-phone" id="brand" ><img src="img/logo.png" alt=""></a>
<ul class="nav">
<li><a href="index.html#home">Home</a></li>
<li><a href="index.html#accelerator">Overview</a></li>
<li><a href="index.html#perks">Perks</a></li>
<li><a href="index.html#mentors">Mentors</a></li>
<li><a href="apply.html" style="color: #FF1440;">Apply</a></li>
</ul>
</div>
</div>
</div>
<!-- /NAVBAR ############################################### -->
<div>
<div class="container" ng-controller="MentorsCtrl">
<div class="row head1">
<div class="span12" >
<h2>Mentors</h2>
</div>
</div>
<ul class="thumbnails">
<li ng-repeat="mentor in mentors" class="span2" style="height: 300px">
<a href="{{mentor.website}}" target="_blank"><img ng-src="{{mentor.image}}" class="img-rounded" width="120" height="120" alt="{{mentor.name}}"></a>
<div classs="caption">
<h3><a href="{{mentor.website}}">{{mentor.name}}</a></h3>
<p><a href="{{mentor.website}}">{{mentor.website_text}}</a></p>
</div>
</li>
</ul>
</div> <!-- /container -->
</div> <!-- /about -->
<!-- FOOTER ############################################### -->
<div id="footer">
<div class="container">
<div class="row" id="footer_bar">
<div class="span12" >
<p>©2013 Awesome Inc</p>
</div>
</div>
</div><!-- /container -->
</div><!-- /footer -->
<!-- /Footer ############################################### -->
<!-- /Google Analytics ############################################### -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-2028878-11']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- /Google Analytics ############################################### -->
</body>
</html>