This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·54 lines (50 loc) · 2.44 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
<!DOCTYPE html>
<html ng-app="siteApp" class="full-height">
<head>
<title>Alpha Knights</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons|Roboto|Lato:700">
<link rel="stylesheet" href="/css/fonts.css">
<link rel="stylesheet" href="/css/styles.css">
<link rel="stylesheet" href="/css/animate.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://code.jquery.com/jquery.min.js"></script>
<script src="https://js.stripe.com/v3/"></script>
<script src="/js/moment.min.js"></script>
<script src="/js/angular.min.js"></script>
<script src="/js/angular-route.js"></script>
<script src="/js/angular-animate.js"></script>
<script src="/js/app.js?v2"></script>
<!-- controller includes -->
<script src="/js/controllers/main.js"></script>
<script src="/js/controllers/allstar.js"></script>
<script src="/js/controllers/live.js"></script>
<script src="/js/controllers/mentors.js"></script>
<script src="/js/controllers/team.js?v2"></script>
<script src="/js/controllers/houston.js"></script>
</head>
<body class="full-height">
<header class="transparent">
<div class="nav">
<a href="#/"><strong>Alpha Knights — FRC 6695</strong></a>
<a href="#/team">The Team</a>
<a href="#/mailchimp">Mailing List</a>
<!-- <a href="#/mentors">Mentors</a>
<a href="#/sponsors">Sponsors</a> -->
<div class="pull-right">
<a href="https://twitter.com/AlphaKnightsSM" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/alphaknights6695" target="_blank"><i class="fa fa-facebook"></i></a>
<a href="https://instagram.com/alphaknights" target="_blank"><i class="fa fa-instagram"></i></a>
<a href="https://www.youtube.com/channel/UCKP7U_W5EnG0cQeXfMLcxvw" target="_blank"><i class="fa fa-youtube-play"></i></a>
</div>
</div>
</header>
<div class="content no-margin {{ contentExtraClasses }}" ng-view></div>
<footer>
<div class="inside-footer">
Made with ♥ and <code></></code> by the Alpha Knights. <a href="https://github.com/AlphaKnights">Open source.</a>
<span class="pull-right"></span>
</div>
</footer>
<script src="https://use.fontawesome.com/12be68084f.js"></script>
</body>
</html>