-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (119 loc) · 5.62 KB
/
index.html
File metadata and controls
140 lines (119 loc) · 5.62 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab|Lato' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.9.3/css/bootstrap-select.min.css">
<link rel="stylesheet" href="/vendor/styles/normalize.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/styles/module.css">
<link rel="stylesheet" href="/styles/base.css">
<title>Help Your Code Fellows</title>
</head>
<body>
<header>
<div class="nav-padding-on-top">-------</div>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Help Your Code Fellows!</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/"><i class="fa fa-home fa-lg"></i> Home</a></li>
<li><a href="/about"><i class="fa fa-user fa-lg"></i> About</a></li>
<li><a href="/productivity"><i class="fa fa-file-code-o fa-lg"></i> Productivity</a></li>
<li><a href="/companies"><i class="fa fa-building-o fa-lg"></i> Companies</a></li>
<li><a href="/projects"><i class="fa fa-files-o fa-lg"></i> Projects</a></li>
</ul>
</div>
</div>
</nav>
</header>
<div class="jumbotron">
<div class="container">
<h1 class="site-title">
Help Your Code Fellows
</h1>
<h4>Hi! Welcome to our helpful guide, an unofficial resource for Code Fellows Seattle.</h4>
<p>The help-your-cf project is intended to give you information on productivity tools and tips, which companies are hiring, and student projects from prior classes - and more! Use the navigation bar above to select the resource you want. Enjoy!</p>
</div>
</div>
<nav class="breadcrumbNav">
<ol class="breadcrumb" id="aboutNav">
<li><a href="/">Home</a></li>
<li id="page"><a href="/about">About Us</a></li>
</ol>
</nav>
<select id="category-filter">
<option value="" class="default">Category Filter</option>
</select>
<main id="content">
<section id="home">
</section>
<section id="aboutUs">
</section>
<section id="product">
</section>
<section id="companies">
</section>
<section id="projects">
<div id="projContainer">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Code Fellows Code 201
<small>final projects</small>
</h1>
</div>
</div>
</div>
</section>
</main>
<hr>
<footer class="footer">
<div class="container">
Follow codefellows:
<a href="https://twitter.com/CodeFellows" target="_blank"><i class="fa fa-twitter fa-lg"></i></a>
<a href="https://www.facebook.com/codefellows.orgs" target="_blank"><i class="fa fa-facebook fa-lg"></i></a>
<a href="https://plus.google.com/103772085826317170119/posts" target="_blank"><i class="fa fa-google-plus fa-lg"></i></a>
</div>
</footer>
<div>
<script src="https://cdn.rawgit.com/visionmedia/page.js/master/page.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.1/lodash.js"></script>
<script src="/vendor/jquery-2.1.4.min.js"></script>
<script src="/vendor/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.9.3/js/bootstrap-select.min.js"></script>
<script src="/vendor/handlebars-v4.0.5.js"></script>
<script src="/data/resource.json"></script>
<script src="/vendor/html5sql.js"></script>
<script src="/scripts/webdb.js"></script>
<script src="/scripts/resource.js"></script>
<!-- Model: -->
<script src="/scripts/product.js"></script>
<script src="/scripts/project.js"></script>
<!-- View: -->
<script src="/scripts/homeView.js"></script>
<script src="/scripts/aboutView.js"></script>
<script src="/scripts/productView.js"></script>
<script src="/scripts/companyView.js"></script>
<script src="/scripts/projectView.js"></script>
<!-- Controller: -->
<script src="/scripts/homeController.js"></script>
<script src="/scripts/aboutController.js"></script>
<script src="/scripts/productController.js"></script>
<script src="/scripts/companyController.js"></script>
<script src="/scripts/projectController.js"></script>
<!-- Router: -->
<script src="/scripts/router.js"></script>
</div>
</body>
</html>