19 lines
646 B
Cheetah
19 lines
646 B
Cheetah
{{ define "base" }}
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="/static/css/reset.css" />
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/comic-mono@0.0.1/index.css" />
|
|
<link rel="stylesheet" type="text/css" href="/static/css/main.css" />
|
|
<title>Yadunand's Site 🚧</title>
|
|
</head>
|
|
<body>
|
|
{{ template "content" .}}
|
|
<div id="grid"></div>
|
|
</body>
|
|
<footer>
|
|
Website design inspired by and shamelessly stolen from <a href="https://owickstrom.github.io/the-monospace-web/">The monospace web </a>
|
|
</footer>
|
|
</html>
|
|
{{ end }}
|