40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="icon" type="image/png" href="/assets/favicon-96x96.png" sizes="96x96"/>
|
|
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg"/>
|
|
<link rel="shortcut icon" href="/assets/favicon.ico"/>
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png"/>
|
|
<meta name="apple-mobile-web-app-title" content="Brendan Chen"/>
|
|
<link rel="manifest" href="/assets/site.webmanifest"/>
|
|
<link rel="stylesheet" href="/assets/css/global.css">
|
|
|
|
<meta name="theme-color" content="#f4f4f4">
|
|
|
|
<title>{{ page.title }}</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
{% include navigation.html %}
|
|
</header>
|
|
<main>
|
|
{{ content }}
|
|
</main>
|
|
<footer>
|
|
<p>
|
|
<!-- see https://stackoverflow.com/questions/12464656/get-todays-date-in-jekyll-with-liquid-markup -->
|
|
Website text © {{ site.time | date: '%Y' }} Brendan Chen.
|
|
<br />
|
|
<a href="/">Home</a>
|
|
<br />
|
|
<a href="/">Projects</a>
|
|
<br />
|
|
<a target="_blank" href="https://gitea.bchen.dev/brendan/brendan-ch.github.io">View website source</a>
|
|
</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|