diff options
| author | Kumar Damani <me@kumardamani.net> | 2023-01-04 23:25:21 +0000 |
|---|---|---|
| committer | Kumar Damani <me@kumardamani.net> | 2023-01-04 23:25:21 +0000 |
| commit | 96a1150708a73f0d1fd08c1bb2ab66922853cda9 (patch) | |
| tree | 1859e7984549a8ba820a69d28e28765fe949580a /layouts/partials/head.html | |
| parent | 610d1f02dd57cbaeccd076ad14ee9efacc5954a5 (diff) | |
added post for prog-as-artprog-as-art
Diffstat (limited to 'layouts/partials/head.html')
| -rw-r--r-- | layouts/partials/head.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..4c2061e --- /dev/null +++ b/layouts/partials/head.html @@ -0,0 +1,18 @@ +<title>{{ with .Title }}{{ . }} – {{end}}{{ .Site.Title }}</title> +{{ with .Site.Params.about }}<meta name="description" content="{{ .description }}">{{ end }} + +<meta name="viewport" content="width=device-width, initial-scale=1"> +<meta charset="UTF-8"/> +{{ if .Site.Params.noindex }}<meta name="robots" content="noindex" /> {{ end }} +{{ if .Params.math }}{{ partial "helpers/katex.html" . }}{{ end }} + +<!-- FontAwesome <https://fontawesome.com/> --> +<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" /> + +<!-- Academicons <https://jpswalsh.github.io/academicons/> --> +<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.9.1/css/academicons.min.css" integrity="sha512-b1ASx0WHgVFL5ZQhTgiPWX+68KjS38Jk87jg7pe+qC7q9YkEtFq0z7xCglv7qGIs/68d3mAp+StfC8WKC5SSAg==" crossorigin="anonymous" /> + +<!-- risotto theme --> +<link rel="stylesheet" href="{{ printf "css/palettes/%s.css" (.Site.Params.theme.palette | default "base16-dark") | absURL }}"> +<link rel="stylesheet" href="{{ "css/risotto.css" | absURL }}"> +<link rel="stylesheet" href="{{ "css/custom.css" | absURL }}"> |
