2021-06-28 17:30:52 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
2021-06-29 22:05:02 +00:00
|
|
|
<meta charset="UTF-8">
|
2021-06-28 17:30:52 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2021-06-29 22:05:02 +00:00
|
|
|
<link rel="icon" type="image/png" href="/favicon.ico">
|
2021-06-30 19:46:03 +00:00
|
|
|
<link rel="canonical" href="https://www.mcmillen.dev/{page_url}">
|
2021-07-01 14:40:48 +00:00
|
|
|
<link rel="alternate" type="application/atom+xml" href="https://www.mcmillen.dev/feed.atom" title="Colin McMillen's Blog - Atom">
|
2021-06-28 17:30:52 +00:00
|
|
|
|
2021-06-30 19:46:03 +00:00
|
|
|
<title>{title}</title>
|
2021-06-28 17:30:52 +00:00
|
|
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&display=block" rel="stylesheet">
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Fira+Mono:500&display=block" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" href="/pygments.css">
|
|
|
|
<link rel="stylesheet" href="/style.css">
|
2021-07-02 05:08:52 +00:00
|
|
|
|
|
|
|
<meta name="twitter:card" content="summary">
|
|
|
|
<meta name="twitter:site" content="@mcmillen">
|
|
|
|
<meta name="twitter:title" content="{title}">
|
|
|
|
<meta name="twitter:description" content="{summary}">
|
2021-06-28 17:30:52 +00:00
|
|
|
</head>
|
|
|
|
|
2022-11-07 20:05:25 +00:00
|
|
|
<script>
|
2022-11-07 20:10:19 +00:00
|
|
|
function fixEmails() {{
|
2022-11-07 20:05:25 +00:00
|
|
|
const mailtoArray = [
|
|
|
|
'm', 'a', 'i', 'l', 't', 'o', ':',
|
|
|
|
'c', 'o', 'l', 'i', 'n', '@',
|
|
|
|
'm', 'c', 'm', 'i', 'l', 'l', 'e', 'n',
|
|
|
|
'.', 'd', 'e', 'v'];
|
|
|
|
const mailtoLink = mailtoArray.join('');
|
|
|
|
const anchors = document.getElementsByTagName('a');
|
2022-11-07 20:10:19 +00:00
|
|
|
for (let i = 0; i < anchors.length; i++) {{
|
2022-11-07 20:05:25 +00:00
|
|
|
const anchor = anchors[i];
|
2022-11-07 20:10:19 +00:00
|
|
|
if (anchor.href == 'mailto:email@example.com') {{
|
2022-11-07 20:05:25 +00:00
|
|
|
anchor.href = mailtoLink;
|
2022-11-07 20:10:19 +00:00
|
|
|
if (anchor.innerText == 'colin at mcmillen dot dev') {{
|
2022-11-07 20:05:25 +00:00
|
|
|
anchor.innerText = mailtoLink.substring(7);
|
2022-11-07 20:10:19 +00:00
|
|
|
}}
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
}}
|
2022-11-07 20:05:25 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<body onload="fixEmails()">
|
2021-06-28 17:30:52 +00:00
|
|
|
|
|
|
|
<div id="page-container">
|
|
|
|
<div id="content-wrap">
|
|
|
|
<div id="header">
|
|
|
|
<div class="content">
|
|
|
|
<a href="/" class="undecorated">Colin McMillen</a>
|
2021-07-01 16:13:20 +00:00
|
|
|
<span style="float: right;"><a href="/feed.atom"><img src="/img/rss.svg" alt="Atom feed" style="width: 17px; height: 17px; margin-bottom: 1px;"></a></span>
|
2021-06-29 15:47:15 +00:00
|
|
|
<span style="float: right;"><a href="https://twitter.com/mcmillen"><img src="/img/twitter.svg" alt="@mcmillen"></a></span>
|
2021-06-28 17:30:52 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="content">
|
2021-06-30 19:46:03 +00:00
|
|
|
{content}
|
2021-06-28 17:30:52 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="footer">
|
|
|
|
<div class="content">
|
2023-11-08 23:56:28 +00:00
|
|
|
© 2023 <a href="/" class="undecorated">Colin McMillen</a>. No cookies, no tracking.
|
2021-06-28 17:30:52 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|