-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
44 lines (35 loc) · 1.28 KB
/
template.html
File metadata and controls
44 lines (35 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
<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=League+Spartan:wght@200&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link rel="icon" href="/icon.png">
<title>Costellae Studios Blog</title>
</head>
<body>
<!-- Loading nav bar -->
<nav id="navbar"></nav>
<script type="text/javascript">
$(document).ready(function(e) {
$('#navbar').load('/navbar.html',function(){console.log('Nav bar successfully loaded in')});
});
</script>
<!-- Everything in the page below -->
<div class="container">
<div class="row">
<div class="leftcolumn">
<div class="card">
<h2> $Title </h2>
<h5> $author $date </h5>
</div>
</div>
</div>
<p> $body </p>
</div>
</body>
</html>