blob: 9bf7bdc0ec3a7c708154efe2809c76c0a7bec974 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<head>
<meta charset="utf-8">
<title>Noah Loomans</title>
<meta name="theme-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/main.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<script>
var host = "noahloomans.com";
if ((host == window.location.host) && (window.location.protocol != 'https:')) {
window.location = window.location.toString().replace(/^http:/, "https:");
}
</script>
<!-- sigh... favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/assets/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/assets/icons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/assets/icons/favicon-16x16.png" sizes="16x16">
{% if page.twitter %}
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@noahloomans" />
<meta name="twitter:title" content="{{ page.twitter.title }}" />
<meta name="twitter:description" content="{{ page.twitter.description }}" />
{% endif %}
</head>
|