-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
48 lines (45 loc) · 1.67 KB
/
blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-49814413-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-49814413-3');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name- "robots" content="index, follow">
<meta property="og:type" content="website">
<meta name="description" content="Christopher is an aspiring Software Developer passionate about building dynamic products for the web">
<meta name="author" content="Christopher Wong">
<meta property="og:image" content="https://christopherwong.co/static/imagesprofile.jpg">
<meta name="twitter:image" content="https://christopherwong.co/static/images/profile.jpg">
<link rel="stylesheet" href="css/grid/simple-grid.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<link rel="stylesheet" href="css/blog.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12">
<nav>
<a href="index.html">Home</a>
<a href="blog.html" class="current" >Blogroll</a>
<!-- <a href="./projects/index.html">Projects</a> -->
</nav>
</div>
</div>
<div class="row">
<div class="col-12">
<h1>Blogroll</h1>
<ul>
<li><a href="post.html">Cheating at HQ Trivia</a><span class="date">January 27, 2018</span></li>
<ul>
</div>
</div>
</div>
</body>
</html>