-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (47 loc) · 2.36 KB
/
index.html
File metadata and controls
52 lines (47 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Will Wolff-Myren</title>
<link href="https://fonts.googleapis.com/css?family=Merriweather%7CLato" rel="stylesheet">
<link rel="stylesheet" href="styles.css" type="text/css">
<link rel="shortcut icon" href="favicon.ico" type="image/vnd.microsoft.icon">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.css"
integrity="sha384-n8MVd4RsNIU0tAv4ct0nTaAbDJwPJzDEaqSD1odI+WdtXRGWt2kTvGFasHpSy3SV" crossorigin="anonymous">
<!-- The loading of KaTeX is deferred to speed up page rendering -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.js"
integrity="sha384-XjKyOOlGwcjNTAIQHIpgOno0Hl1YQqzUOEleOLALmuqehneUG+vnGctmUb0ZY0l8"
crossorigin="anonymous"></script>
<!-- To automatically render math in text elements, include the auto-render extension: -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/contrib/auto-render.min.js"
integrity="sha384-+VBxd3r6XgURycqtZ117nYw44OOcIax56Z4dCRWbxyPt0Koah1uHoK0o4+/RRE05" crossorigin="anonymous"></script>
</head>
<body>
<nav>
<h1>Will Wolff-Myren</h1>
<ul>
<li><a href="https://www.linkedin.com/in/willwm/"
aria-label="Link to Will Wolff-Myren's LinkedIn profile">LinkedIn</a></li>
<li><a href="https://gitlab.com/willwm" aria-label="Link to Will Wolff-Myren's GitLab profile">GitLab</a></li>
<li><a href="https://github.com/willwm" aria-label="Link to Will Wolff-Myren's GitHub profile">GitHub</a></li>
<li><a href="https://github.com/willwm/latex-homework-template"
aria-label="Link to my LaTeX Homework Template on GitHub">${\LaTeX \text{ Homework Template}}$</a></li>
</ul>
</nav>
<script src="scripts/auto-theme.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
renderMathInElement(document.body, {
delimiters: [
{ left: '$$', right: '$$', display: true },
{ left: '$', right: '$', display: false }
],
throwOnError: false
});
console.log("Well, hello there! Thanks for checking out my code! 😁");
console.log("If you'd like to see the source, check out https://github.com/willwm/willwm.github.io");
});
</script>
</body>
</html>