-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.php
28 lines (27 loc) · 836 Bytes
/
blog.php
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
<!DOCTYPE html>
<html>
<head>
<title>Mercerenies - Blog</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<?php include('private/header.php'); ?>
<div class="page content">
<ul>
<li>
<a href="blog/argorder.php">Woes of Argument Order</a> <em>(Posted December 22, 2016)</em>
</li>
<li>
<a href="blog/symbols.php">Javascript did Something Clever</a> <em>(Posted June 4, 2018)</em>
</li>
<li>
<a href="blog/raii.php">RAII is Just Continuations</a> <em>(Posted June 8, 2019)</em>
</li>
<li>
<a href="blog/roulette.php">Overanalyzing Yoshi's Island</a> <em>(Posted July 30, 2020)</em>
</li>
</ul>
</div>
<?php include('private/footer.php'); ?>
</body>
</html>