-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
27 lines (25 loc) · 810 Bytes
/
blog.html
File metadata and controls
27 lines (25 loc) · 810 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Bradley Hutchings - Blog</title>
<script src="sharedHeader.js"></script>
<link rel="stylesheet" href="blogPosts.css" />
</head>
<body>
<nav-bar></nav-bar>
<br />
<div class="container-fluid my-4">
<blog-posts></blog-posts>
</div>
<footer-links></footer-links>
<br />
<script type="module" src="navBar.js"></script>
<script type="module" src="blogPosts.js"></script>
<script type="module" src="themeListener.js"></script>
<script type="module" src="footer.js"></script>
<script type="module" src="aOpenNew.js"></script>
</body>
</html>