34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="/styles/common.css" />
|
|
<link rel="stylesheet" href="/styles/index.css" />
|
|
<link rel="icon" type="image/webp" href="/public/logo.webp" />
|
|
<title>Barrett Ruth</title>
|
|
</head>
|
|
<body class="graph-background">
|
|
<site-header></site-header>
|
|
<main class="main">
|
|
<div class="content">
|
|
<ul class="topics">
|
|
<li class="topic algorithms">
|
|
<a href="/algorithms" onclick="typechars(event)">algorithms</a>
|
|
</li>
|
|
<li class="topic operating-systems">
|
|
<a href="/operating-systems" onclick="typechars(event)">operating systems</a>
|
|
</li>
|
|
<li class="topic software">
|
|
<a href="/software" onclick="typechars(event)">software</a>
|
|
</li>
|
|
</ul>
|
|
<div class="posts" id="posts"></div>
|
|
</div>
|
|
</main>
|
|
<site-footer></site-footer>
|
|
<script src="scripts/common.js"></script>
|
|
<script src="scripts/index.js"></script>
|
|
</body>
|
|
</html>
|