-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (63 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<title>Captain Harris</title>
<base href="https://cptharris.github.io" target="_self">
<meta name="author" content="cptharris">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<meta name="description" content="Captain Harris's Coding Website">
<meta name="keywords" content="HTML,CSS,Processing JavaScript,cptharris">
<link rel="icon" href="img/favicon.svg" type="image/svg+xml">
<link rel='alternate icon' href='img/favicon.ico' type='image/x-icon'>
<meta name="google-site-verification" content="5NL20y_un4VB5CJ6o-oZCk3GOn-8p1fxqJVtRMg_3ng" />
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
<script src="js/includes.js"></script>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body class="h-100">
<div class="container-fluid h-100">
<div class="row mb-auto">
<include src="headermenu.html">Loading menus...</include>
</div>
<div class="row align-items-center h-100 mb-5" style="background: rgb(28, 24, 42);">
<div class="col d-flex flex-column justify-content-center">
<main>
<h1 class="display-1 text-center">Captain Harris</h1>
</main>
</div>
</div>
<div class="row">
<div class="col">
<div id="site-notice"></div>
<main class="px-md-5 px-sm-4 px-xs-3">
<h2 class="display-6 text-center" id="blog">Blog<a class="hash" href="#blog">#</a></h2>
<div id="letters">
Loading blogs from source...
</div>
<br><br>
<p>View my previous blogs <a href="blog_archive">here</a>.</p>
</main>
</div>
</div>
<div class="blankspace"></div>
</div>
<include src="footermenu.html">Loading footer...</include>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
<!-- Loads blogs -->
<script src="js/loadblogs.js"></script>
<script src="https://sheets.googleapis.com/v4/spreadsheets/1eyWldvly_I5UMHb3bEZDFEkifbCRsgRbDTRNu4NOVRY/values/Sheet1?key=AIzaSyDLeEQXNzj20G-rz2jJN3Sw_0eBbzqvc9c&callback=listEntries" charset="utf-8"></script>
<!-- Loads site notice -->
<script type="text/javascript">
function displayNotice(input) {
document.getElementById("site-notice").innerHTML = input.values[0][0];
}
</script>
<script src="https://sheets.googleapis.com/v4/spreadsheets/1LIFrZXjK03kqhnMu81GFLI6xdj9S1RUOMyCBtx23AXI/values/Sheet1!A1?key=AIzaSyDLeEQXNzj20G-rz2jJN3Sw_0eBbzqvc9c&callback=displayNotice" charset="utf-8"></script>
</html>