blob: 837cc7ca1674ffcc9355d87ee42fc40b4cf55963 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<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" | relativize_url }}">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<!-- sigh... favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="{{ "/assets/icons/apple-touch-icon.png" | relativize_url }}">
<link rel="icon" type="image/png" href="{{ "/assets/icons/favicon-32x32.png" | relativize_url }}" sizes="32x32">
<link rel="icon" type="image/png" href="{{ "/assets/icons/favicon-16x16.png" | relativize_url }}" sizes="16x16">
{% if page.info %}
<meta name="og:title" content="{{ page.info.title }}" />
<meta name="og:description" content="{{ page.info.description }}">
{% if page.info.image %}
<meta property="og:image" content="{{ page.info.image }}" />
{% endif %}
{% endif %}
</head>
|