2019-08-02 18:36:12 -07:00
|
|
|
<head>
|
2019-08-06 03:48:29 -07:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2020-05-09 17:29:37 -07:00
|
|
|
<meta name="theme-color" content="#1dc868">
|
|
|
|
{{ if .Description }}
|
|
|
|
<meta name="description" content="{{ .Description }}">
|
|
|
|
{{ end }}
|
2019-08-06 03:48:29 -07:00
|
|
|
|
2020-05-25 20:55:20 -07:00
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inconsolata&family=Raleway&family=Lora&display=block" media="screen">
|
2020-05-09 17:02:13 -07:00
|
|
|
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css" media="screen">
|
2019-08-06 03:48:29 -07:00
|
|
|
{{ $style := resources.Get "scss/style.scss" | resources.ToCSS | resources.Minify }}
|
2019-12-30 14:56:09 -08:00
|
|
|
{{ $sidenotes := resources.Get "scss/sidenotes.scss" | resources.ToCSS | resources.Minify }}
|
|
|
|
{{ $icon := resources.Get "img/favicon.png" }}
|
2020-03-02 21:30:23 -08:00
|
|
|
{{- partial "sidenotes.html" . -}}
|
2020-05-09 17:02:13 -07:00
|
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}" media="screen">
|
|
|
|
<link rel="stylesheet" href="{{ $sidenotes.Permalink }}" media="screen">
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.css" integrity="sha384-zB1R0rpPzHqg7Kpt0Aljp8JPLqbXI3bhnPWROx27a9N0Ll6ZP/+DiW/UqRcLbRjq" crossorigin="anonymous" media="screen">
|
2019-12-30 14:56:09 -08:00
|
|
|
<link rel="icon" type="image/png" href="{{ $icon.Permalink }}">
|
2019-08-06 03:48:29 -07:00
|
|
|
|
2019-08-16 02:58:39 -07:00
|
|
|
<title>{{ .Title }}</title>
|
2019-08-02 18:36:12 -07:00
|
|
|
</head>
|