2020-05-08 00:01:50 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta charset="utf-8"/>
|
|
|
|
|
2020-05-10 01:36:58 +00:00
|
|
|
<style>
|
|
|
|
{% include 'style.css' %}
|
|
|
|
</style>
|
2020-05-08 00:01:50 +00:00
|
|
|
|
2020-05-09 22:17:01 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="/theme/fonts/fonts.css" />
|
2020-05-10 01:36:58 +00:00
|
|
|
|
|
|
|
<title>Tanner Collin</title>
|
2020-05-08 00:01:50 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<div class="sidebar">
|
2020-06-09 19:40:38 +00:00
|
|
|
<img src="/theme/me.jpg" alt="A picture of me smiling" />
|
2020-05-08 00:01:50 +00:00
|
|
|
<p>
|
|
|
|
Tanner Collin
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<div class="topbar">
|
|
|
|
<p>
|
2020-06-09 19:40:38 +00:00
|
|
|
<img src="/theme/logo.png" alt="My name in handwriting" />
|
2020-05-08 00:01:50 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
2020-05-10 01:36:58 +00:00
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
2020-05-08 00:01:50 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-06-09 19:40:38 +00:00
|
|
|
<script src="/theme/darkmode-js.min.js"></script>
|
|
|
|
<script>
|
|
|
|
const options = {
|
|
|
|
bottom: '16px',
|
|
|
|
right: '16px',
|
|
|
|
buttonColorDark: '#666',
|
|
|
|
buttonColorLight: '#aaa',
|
|
|
|
label: '🌙',
|
|
|
|
};
|
|
|
|
new Darkmode(options).showWidget();
|
|
|
|
</script>
|
|
|
|
</body>
|
2020-05-08 00:01:50 +00:00
|
|
|
</html>
|
|
|
|
|