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-08-27 20:30:43 +00:00
|
|
|
<img src="/theme/me.jpg" class="me" alt="A picture of me smiling" />
|
|
|
|
<div class="info">
|
|
|
|
<p>
|
|
|
|
Tanner Collin
|
|
|
|
</p>
|
|
|
|
<p class="contact-icons">
|
|
|
|
<a href="mailto:site@tannercollin.com"><img src="/theme/mail.svg" /></a>
|
|
|
|
<a href="https://t.me/tannercollin" target="_blank"><img src="/theme/telegram.svg" /></a>
|
|
|
|
<a href="https://github.com/tannercollin" target="_blank"><img src="/theme/github.svg" /></a>
|
|
|
|
</p>
|
|
|
|
</div>
|
2020-05-08 00:01:50 +00:00
|
|
|
</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>
|
|
|
|
|