-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (91 loc) · 4.68 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home | Hands-On Deck</title>
<!-- Structure Substitution -->
<script src="https://code.jquery.com/jquery-3.7.1.js"></script>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<!-- Blog TOC -->
<link rel="stylesheet" href="https://cdn.rawgit.com/afeld/bootstrap-toc/v1.0.1/dist/bootstrap-toc.min.css">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Reddit+Mono:[email protected]&display=swap" rel="stylesheet">
<!-- Personal Stylesheet -->
<link href="styles.css" rel="stylesheet">
<!-- Animation CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<!-- Favicon (to-do later)-->
<!-- <link rel="icon" type="image/x-icon" href="expository-ico.jpeg"> -->
<meta http-equiv="refresh" content="1; URL=https://handsondeck.vercel.app/home">
</head>
<body>
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mb-2 mb-lg-0 me-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/blog">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/progress">Progress</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/about">About</a>
</li>
</ul>
</div>
<a href="/home" class="navbar-brand ms-auto"><span class="text-oscillation"></span></a>
</div>
</nav>
<div class="body-container">
<div class="card position-relative top-card">
<img src="images/Hands-On Deck.png" alt="Header" class="post-image" width="100%" style="max-height: 40vh;" preserveAspectRatio="meet slice" focusable="false">
<div class="card-img-overlay">
<br>
<h1 class="card-title text-center"><strong><a href="https://handsondeck.vercel.app" style="text-decoration: none;">Hands </strong><span class="text-white">On Deck</span></a></h1>
</div>
</div>
<div class="container">
<br>
<div class="row">
<div class="col-lg-2">
<h4 class="fst-italic text-center" data-toc-skip>Index</h4>
<h6 class="fst-italic text-center" data-toc-skip><a href="blog/">Quick scan</a></h6>
</div>
<div class="col-lg-10">
<div class="d-flex justify-content-center">
<div class="spinner-border spinner-border-lg" role="status">
<span class="visually-hidden" >Loading...</span>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="container text-right">
© Copyright 2024
<br>
Website made possible by <a href="https://getbootstrap.com">Bootstrap</a> and <a href="https://animate.style/">Animate.style</a>
</div>
</footer>
<!-- Bootstrap JS/Popper -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-0pUGZvbkm6XF6gxjEnlmuGrJXVbNuzT9qBBavbLwCsOGabYfZo0T0to5eqruptLy" crossorigin="anonymous"></script>
<script src="https://cdn.rawgit.com/afeld/bootstrap-toc/v1.0.1/dist/bootstrap-toc.min.js"></script>
</body>
</html>