-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
mentors.html
41 lines (39 loc) · 1.82 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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-139208286-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-139208286-2');
</script>
<meta charset="UTF-8">
<meta name="description" content="FIRST Robotics Competition team based out of Iowa City.">
<meta name="keywords" content="FRC, FIRST, Robotics, West High School, City High School, Iowa City">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, maximum-scale=1">
<link rel="icon" href="static/img/logos/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="static/css/framework.css" media="screen">
<link rel="stylesheet" href="static/css/main.css" media="screen">
<link rel="stylesheet" href="static/css/page/mentors.css" media="screen">
</head>
<body>
<script src="static/js/jquery.min.js"></script>
<script src="static/js/framework.js" charset="utf-8"></script>
<script charset="utf-8">
let pageData = { name: 'Our Mentors', nav: 'about.html' }
</script>
<script src="static/js/main.js" charset="utf-8"></script>
<script src="static/js/page/mentors.js" charset="utf-8"></script>
<main id="main">
<div id="main-header" class="text-light">
<div id="heading-shade"></div>
<h2 id="heading-title">Mentors</h2>
</div>
<div id="main-content" class="mar-page">
<div id="mentor-container"></div>
</div>
</main>
</body>
</html>