2020-05-08 00:01:50 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2020-09-04 00:40:33 +00:00
|
|
|
{% block head %}
|
2020-05-08 00:01:50 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta charset="utf-8"/>
|
|
|
|
|
2020-09-04 00:40:33 +00:00
|
|
|
<title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
|
|
|
|
<meta name="author" content="{{ AUTHOR }}" />
|
|
|
|
{% endblock head %}
|
|
|
|
|
2020-11-02 02:42:28 +00:00
|
|
|
<link rel="preload" href="/theme/fonts/AppSILB.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
|
|
|
<link rel="preload" href="/theme/fonts/AppSILBI.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
|
|
|
<link rel="preload" href="/theme/fonts/AppSILI.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
|
|
|
<link rel="preload" href="/theme/fonts/AppSILR.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
|
|
|
|
|
|
|
<link rel="preload" href="/theme/fonts/Lato-Bold.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
|
|
|
<link rel="preload" href="/theme/fonts/Lato-BoldItalic.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
|
|
|
<link rel="preload" href="/theme/fonts/Lato-Italic.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
|
|
|
<link rel="preload" href="/theme/fonts/Lato-Regular.ttf" as="font" type="font/ttf" crossorigin="anonymous">
|
|
|
|
|
2020-05-10 01:36:58 +00:00
|
|
|
<style>
|
|
|
|
{% include 'style.css' %}
|
2020-09-04 00:40:33 +00:00
|
|
|
{% include 'fonts.css' %}
|
2020-05-10 01:36:58 +00:00
|
|
|
</style>
|
2020-05-08 00:01:50 +00:00
|
|
|
|
2020-09-04 00:40:33 +00:00
|
|
|
<script defer src="/theme/darkmode-js.min.js"></script>
|
|
|
|
<script defer src="/theme/enable-darkmode.js"></script>
|
2020-11-02 02:42:28 +00:00
|
|
|
<script defer src="/theme/instant-page.js"></script>
|
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">
|
2020-11-02 02:42:28 +00:00
|
|
|
<a href="mailto:site@tannercollin.com" rel="noreferrer noopener"><img alt="email icon" src="/theme/mail.svg" /></a>
|
|
|
|
<a href="https://t.me/tannercollin" target="_blank" rel="noreferrer noopener"><img alt="telegram logo" src="/theme/telegram.svg" /></a>
|
|
|
|
<a href="https://github.com/tannercollin" target="_blank" rel="noreferrer noopener"><img alt="github logo" src="/theme/github.svg" /></a>
|
2020-08-27 20:30:43 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
2020-05-08 00:01:50 +00:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<div class="topbar">
|
2020-08-27 23:33:03 +00:00
|
|
|
<img src="/theme/me.jpg" class="me" alt="A picture of me smiling" />
|
|
|
|
<div class="info">
|
|
|
|
Tanner Collin
|
|
|
|
<p class="contact-icons">
|
2020-11-02 02:42:28 +00:00
|
|
|
<a href="mailto:site@tannercollin.com" rel="noreferrer noopener"><img alt="email icon" src="/theme/mail.svg" /></a>
|
|
|
|
<a href="https://t.me/tannercollin" target="_blank" rel="noreferrer noopener"><img alt="telegram logo" src="/theme/telegram.svg" /></a>
|
|
|
|
<a href="https://github.com/tannercollin" target="_blank" rel="noreferrer noopener"><img alt="github logo" src="/theme/github.svg" /></a>
|
2020-08-27 23:33:03 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
2020-05-08 00:01:50 +00:00
|
|
|
</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
|
|
|
</body>
|
2020-05-08 00:01:50 +00:00
|
|
|
</html>
|
|
|
|
|