-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (46 loc) · 2.35 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>CS157 | Algorithms</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="description" content="Homepage for Brown CS157 (Design and Analysis of Algorithms)">
<meta name="keywords" content="Brown CS, course, CS157, algorithm">
<meta name="author" content="CS157 Course Staff">
<meta name="copyright" content="CS157 Course Staff">
<meta name="robots" content="index, follow">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#ffffff">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="css/all.min.css">
<link rel="preload" href="webfonts/fa-solid-900.woff2" as="font" type="font/woff2" crossorigin="">
<!-- <script defer src="js/all.min.js"></script> -->
<!-- Custom Stylesheets -->
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="css/algorithms.css">
</head>
<body>
<noscript>
<p>
This page uses Javascript to render HTML components, please enable it to best view this page
</p>
</noscript>
<div id="app" class="h-100">
<page-navbar :primary-color="curPageThemeColor" :secondary-color="navbarBackgroundColor" navbar-background-color="rgba(163, 218, 243, 0.5)" :current-tab-text="currentTabText" :tabnum="tabnum" :stop-theme-colors="pageThemeColors" :page-filepaths="pageFilepaths" :label-texts="tabTexts" :icon-classes="iconClasses"></page-navbar>
<page-background background-image-url="imgs/anatoly-anikin-nAYl83cm9so-unsplash.jpg"></page-background>
<page-content :cur-page-theme-color="curPageThemeColor" :cur-page-icon-classes="curPageIconClasses"></page-content>
<page-footer :cur-page-theme-color="curPageThemeColor" footer-background-color="rgba(163, 218, 243, 0.6)"></page-footer>
</div>
<!-- Vue -->
<!-- production version, optimized for size and speed -->
<script src="js/vue.min.js"></script>
<!-- custom scripts -->
<!-- page specific script -->
<script src="js/modernizr-webp.js"></script>
<script type="module" src="js/algorithms.js"></script>
<!-- shared vue instance -->
<script type="module" src="js/app.js"></script>
</body>
</html>