mirror of
https://github.com/jointakahe/jointakahe
synced 2025-02-22 05:07:37 +01:00
24 lines
1.2 KiB
HTML
24 lines
1.2 KiB
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
{{ hugo.Generator }}
|
|
{{ $summary := trim (.Summary | plainify | htmlUnescape) "\n\r"
|
|
| default .Title }}
|
|
<meta name="description" content="{{ $summary }}">
|
|
<link rel="stylesheet" href="{{ "css/normalize.css" | absURL }}">
|
|
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
|
|
{{ $caymanScss := "scss/cayman.scss" }}
|
|
{{ $options := (dict "targetPath" "css/cayman.css") }}
|
|
{{ $caymanCss := resources.Get $caymanScss | resources.ExecuteAsTemplate $caymanScss . | toCSS $options | fingerprint }}
|
|
<link rel="stylesheet" href="{{ $caymanCss.Permalink }}">
|
|
<link rel="apple-touch-icon" sizes="1024x1024" href="/icon-1024.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/icon-32.png">
|
|
<meta property="og:title" content="{{ .Title }} | {{ $.Site.Title }}" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://jointakahe.org/" />
|
|
<meta property="og:image" content="https://jointakahe.org/icon-1024.png" />
|
|
{{ partial "katex.html" . }}
|
|
<title>{{ .Title }} | {{ $.Site.Title }}</title>
|
|
</head>
|