-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
128 lines (105 loc) · 5.53 KB
/
index.html
File metadata and controls
128 lines (105 loc) · 5.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="Collective learning for a sustainable future" />
<meta name="author" content="wbarfuss" />
<title id="title"></title>
<!-- Icon -->
<link rel="icon" type="image/x-icon" href="static/assets/favicon.ico" />
<!-- Bootstrap icons-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet" />
<!-- Google fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,600;1,600&display=swap"
rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;0,500;0,600;0,700;1,300;1,500;1,600;1,700&display=swap"
rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,400;1,400&display=swap"
rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link type="text/css" href="static/css/styles.css" rel="stylesheet" />
<link type="text/css" href="static/css/main.css" rel="stylesheet" />
<!-- Bootstrap core JS-->
<script type="text/javascript" src="static/js/bootstrap.bundle.min.js"></script>
<!-- For Compatability -->
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<!-- Markdown -->
<script type="text/javascript" src="static/js/marked.min.js"></script>
<!-- Mathematics -->
<script>
// See https://docs.mathjax.org/en/latest/index.html for more details.
MathJax = {
tex: {
packages: {}, // extensions to use
inlineMath: [ // start/end delimiter pairs for in-line math
['$', '$'],
['\\(', '\\)']
],
displayMath: [ // start/end delimiter pairs for display math
['$$', '$$'],
['\\[', '\\]']
],
processEscapes: false, // use \$ to produce a literal dollar sign
processEnvironments: true, // process \begin{xxx}...\end{xxx} outside math mode
processRefs: true, // process \ref{...} outside of math mode
digits: /^(?:[0-9]+(?:\{,\}[0-9]{3})*(?:\.[0-9]*)?|\.[0-9]+)/, // pattern for recognizing numbers
tags: 'all', // or 'ams' or 'all'
tagSide: 'right', // side for \tag macros
tagIndent: '0.8em', // amount to indent tags
useLabelIds: true, // use label name rather than tag for ids
maxMacros: 10000, // maximum number of macro substitutions per expression
maxBuffer: 5 * 1024, // maximum size for the internal TeX string (5K)
// baseURL: // URL for use with links to tags (when there is a <base> tag in effect)
// (document.getElementsByTagName('base').length === 0) ? '' : String(document.location).replace(/#.*$/, ''),
formatError: // function called when TeX syntax errors occur
(jax, err) => jax.formatError(err)
}
};
</script>
<script type="text/javascript" id="MathJax-script" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js"></script>
<script type="text/javascript" id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<!-- Core JS-->
<script type="text/javascript" src="static/js/scripts.js"></script>
<script type="text/javascript" src="static/js/js-yaml.min.js"></script>
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="header navbar navbar-expand-lg navbar-light sticky-top shadow-sm" id="mainNav">
<div class="container px-5">
<a id="page-top-title" class="navbar-brand fw-bold" href="index.html#page-top"><img src="static/assets/img/logo.png" style="width: 1.9rem;"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
MENU
<i class="bi-list"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ms-auto me-4 my-3 my-lg-0">
<li class="nav-item">
<a class="nav-link me-lg-3" href="mission.html">MISSION</a>
</li>
<li class="nav-item">
<a class="nav-link me-lg-3" href="team.html">TEAM</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link me-lg-3" href="#page-top">🔝</a>
</li> -->
</ul>
</div>
</div>
</nav>
<!-- Home -->
<section class="bg-gradient-primary-to-secondary-light mt5 md5" id="home">
<div class="container px-5">
<header>
<!-- <h2 id="home-subtitle"> </h2> -->
<!-- <span class="bi bi-list"></span> -->
</header>
<div class="main-body" id="home-md"></div>
</div>
</section>
<!-- Home -->
</body>
</html>