Compare commits
No commits in common. "b5b9e68df001d2b9a97d143eaffb5d521756f969" and "2be883b19f46ba2feb562bcfd1c6c1dbcb972757" have entirely different histories.
b5b9e68df0
...
2be883b19f
|
@ -54,10 +54,10 @@ AUTHORS_SAVE_AS = ''
|
||||||
CATEGORIES_SAVE_AS = ''
|
CATEGORIES_SAVE_AS = ''
|
||||||
TAGS_SAVE_AS = ''
|
TAGS_SAVE_AS = ''
|
||||||
|
|
||||||
INDEX_SAVE_AS = 'index.html'
|
INDEX_SAVE_AS = 'index.php'
|
||||||
ARTICLE_URL = '{slug}/'
|
ARTICLE_URL = '{slug}/'
|
||||||
ARTICLE_SAVE_AS = '{slug}/index.html'
|
ARTICLE_SAVE_AS = '{slug}/index.php'
|
||||||
PAGE_URL = '{slug}/'
|
PAGE_URL = '{slug}/'
|
||||||
PAGE_SAVE_AS = '{slug}/index.html'
|
PAGE_SAVE_AS = '{slug}/index.php'
|
||||||
|
|
||||||
PROD = True
|
PROD = True
|
||||||
|
|
|
@ -26,10 +26,8 @@
|
||||||
|
|
||||||
{% block info %}
|
{% block info %}
|
||||||
Tanner Collin
|
Tanner Collin
|
||||||
<p class="contact-icons">
|
<p class='theme-select'>
|
||||||
<a href="mailto:site2@tannercollin.com" rel="noreferrer noopener"><img alt="email" src="/theme/mail.svg" width="20" height="20" /></a>
|
<a onClick="setTheme('light')">Light</a> / <a onClick="setTheme('dark')">Dark</a>
|
||||||
<a href="https://t.me/tannercollin" target="_blank" rel="noreferrer noopener"><img alt="telegram" src="/theme/telegram.svg" width="20" height="20" /></a>
|
|
||||||
<a href="https://github.com/tannercollin" target="_blank" rel="noreferrer noopener"><img alt="github" src="/theme/github.svg" width="20" height="20" /></a>
|
|
||||||
</p>
|
</p>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -41,6 +39,10 @@
|
||||||
<div class="content">
|
<div class="content">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="topbar">
|
||||||
|
{{ info() }}
|
||||||
|
</div>
|
||||||
|
|
||||||
<p><a href="/">← Return to Home</a></p>
|
<p><a href="/">← Return to Home</a></p>
|
||||||
<header>
|
<header>
|
||||||
<h1>{{ article.title }}</h1>
|
<h1>{{ article.title }}</h1>
|
||||||
|
|
|
@ -36,22 +36,56 @@
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script defer src="/theme/instant-page.js"></script>
|
<script defer src="/theme/instant-page.js"></script>
|
||||||
|
|
||||||
|
<noscript>
|
||||||
|
<style type="text/css">
|
||||||
|
.theme-select {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</noscript>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
{% if PROD %}
|
||||||
<div class="container">
|
<body class="<?php echo $themeClass; ?>">
|
||||||
<div class="bar">
|
{% else %}
|
||||||
{% block info %}
|
<body>
|
||||||
{% endblock %}
|
{% endif %}
|
||||||
</div>
|
|
||||||
|
|
||||||
{% block content %}
|
{%- macro info() -%}
|
||||||
{% endblock %}
|
{% block info %}{% endblock %}
|
||||||
|
{%- endmacro -%}
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="sidebar">
|
||||||
|
{{ info() }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p class="copyright">
|
{% block content %}
|
||||||
© 2012–2021 Tanner Collin
|
{% endblock %}
|
||||||
</p>
|
</div>
|
||||||
|
|
||||||
|
<p class="copyright">
|
||||||
|
© 2012–2021 Tanner Collin
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
function setTheme(theme) {
|
||||||
|
console.log('Setting theme to', theme);
|
||||||
|
|
||||||
|
if (theme == 'dark') {
|
||||||
|
document.body.classList.add('dark');
|
||||||
|
document.body.classList.remove('light');
|
||||||
|
} else if (theme == 'light') {
|
||||||
|
document.body.classList.add('light');
|
||||||
|
document.body.classList.remove('dark');
|
||||||
|
}
|
||||||
|
|
||||||
|
document.cookie = 'theme=' + theme + '; Max-Age=31536000; Path=/; SameSite=Lax';
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
|
@ -16,11 +16,19 @@
|
||||||
<a href="https://t.me/tannercollin" target="_blank" rel="noreferrer noopener"><img alt="telegram" src="/theme/telegram.svg" width="20" height="20" /></a>
|
<a href="https://t.me/tannercollin" target="_blank" rel="noreferrer noopener"><img alt="telegram" src="/theme/telegram.svg" width="20" height="20" /></a>
|
||||||
<a href="https://github.com/tannercollin" target="_blank" rel="noreferrer noopener"><img alt="github" src="/theme/github.svg" width="20" height="20" /></a>
|
<a href="https://github.com/tannercollin" target="_blank" rel="noreferrer noopener"><img alt="github" src="/theme/github.svg" width="20" height="20" /></a>
|
||||||
</p>
|
</p>
|
||||||
|
<p class='theme-select'>
|
||||||
|
<a onClick="setTheme('light')">Light</a> / <a onClick="setTheme('dark')">Dark</a>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="content index">
|
<div class="content index">
|
||||||
|
|
||||||
|
<div class="topbar">
|
||||||
|
{{ info() }}
|
||||||
|
</div>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Hi, I'm Tanner! I do firmware and web development in Calgary.
|
Hi, I'm Tanner! I do firmware and web development in Calgary.
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -46,6 +46,77 @@ pre {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.theme-select {
|
||||||
|
font-size: 1rem;
|
||||||
|
margin-bottom: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar {
|
||||||
|
margin-top: 2px;
|
||||||
|
float: left;
|
||||||
|
width: 8rem;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar .me {
|
||||||
|
width: 100%;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar .info {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar .contact-icons a {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar .contact-icons img {
|
||||||
|
width: 1.25rem;
|
||||||
|
height: 1.25rem;
|
||||||
|
margin-left: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topbar {
|
||||||
|
display: table;
|
||||||
|
overflow: auto;
|
||||||
|
margin: auto;
|
||||||
|
margin-top: -0.5rem;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topbar .me {
|
||||||
|
float: left;
|
||||||
|
height: 6.5rem;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topbar .info {
|
||||||
|
float: left;
|
||||||
|
margin-top: -0.25rem;
|
||||||
|
margin-left: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topbar .contact-icons {
|
||||||
|
margin-left: 0.25rem;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topbar .contact-icons a {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topbar .contact-icons img {
|
||||||
|
width: 1.5rem;
|
||||||
|
height: 1.5rem;
|
||||||
|
margin-right: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topbar .theme-select {
|
||||||
|
margin-top: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
.toc {
|
.toc {
|
||||||
float: right;
|
float: right;
|
||||||
padding: 0.75rem;
|
padding: 0.75rem;
|
||||||
|
@ -115,72 +186,19 @@ pre {
|
||||||
.content {
|
.content {
|
||||||
margin-left: 10rem;
|
margin-left: 10rem;
|
||||||
}
|
}
|
||||||
|
.topbar {
|
||||||
.bar {
|
display: none;
|
||||||
margin-top: 2px;
|
|
||||||
float: left;
|
|
||||||
width: 8rem;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bar .me {
|
|
||||||
width: 100%;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bar .info {
|
|
||||||
margin-top: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bar .contact-icons a {
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bar .contact-icons img {
|
|
||||||
width: 1.25rem;
|
|
||||||
height: 1.25rem;
|
|
||||||
margin-left: 0.5rem;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width:36rem) {
|
@media screen and (max-width:36rem) {
|
||||||
.bar {
|
.sidebar {
|
||||||
display: table;
|
display: none;
|
||||||
overflow: auto;
|
|
||||||
margin: auto;
|
|
||||||
margin-top: -0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bar .me {
|
|
||||||
float: left;
|
|
||||||
height: 6.5rem;
|
|
||||||
width: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bar .info {
|
|
||||||
float: left;
|
|
||||||
margin-top: -0.25rem;
|
|
||||||
margin-left: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bar .contact-icons {
|
|
||||||
margin-top: 1rem;
|
|
||||||
margin-left: 0.25rem;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bar .contact-icons a {
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bar .contact-icons img {
|
|
||||||
width: 1.5rem;
|
|
||||||
height: 1.5rem;
|
|
||||||
margin-right: 1rem;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
color: #000;
|
color: #000;
|
||||||
|
@ -207,7 +225,75 @@ pre {
|
||||||
color: #555;
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body.dark {
|
||||||
|
background-color: #000;
|
||||||
|
color: #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark a {
|
||||||
|
color: #eee;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark pre {
|
||||||
|
background-color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark :not(pre)>code {
|
||||||
|
background-color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark .toc {
|
||||||
|
background-color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark .content p.metadata {
|
||||||
|
color: #aaa;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark .content img {
|
||||||
|
filter: brightness(75%);
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark .contact-icons img {
|
||||||
|
filter: invert(1);
|
||||||
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body.light {
|
||||||
|
background-color: #eee;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.light a {
|
||||||
|
color: #000;
|
||||||
|
border-bottom: 1px solid #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.light pre {
|
||||||
|
background-color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.light :not(pre)>code {
|
||||||
|
background-color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.light .toc {
|
||||||
|
background-color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.light .content p.metadata {
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.light .contact-icons img {
|
||||||
|
filter: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.light .content img {
|
||||||
|
filter: none;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #000;
|
background-color: #000;
|
||||||
color: #eee;
|
color: #eee;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user