mirror of
https://github.com/morgan9e/blog
synced 2026-04-13 15:54:06 +09:00
38 lines
1.8 KiB
HTML
38 lines
1.8 KiB
HTML
{{- $title := .Site.Title -}}
|
|
{{- $desc := .Site.Params.description -}}
|
|
{{- if and .Title (not .IsHome) -}}
|
|
{{- $title = printf "%s | %s" .Title .Site.Title -}}
|
|
{{- end -}}
|
|
{{- with .Description }}{{ $desc = . }}{{ end -}}
|
|
{{- if and (not .Description) .IsPage }}{{ with .Summary }}{{ $desc = . | plainify | truncate 160 }}{{ end }}{{ end -}}
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=IBM+Plex+Sans:wght@400;500;600&family=Inter:wght@400;500;600&display=swap">
|
|
<link rel="stylesheet" href="/css/main.css">
|
|
<title>{{ $title }}</title>
|
|
<meta name="description" content="{{ $desc }}">
|
|
<meta name="author" content="{{ .Site.Params.author }}">
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
|
|
{{/* Open Graph */}}
|
|
<meta property="og:title" content="{{ with .Title }}{{ . }}{{ else }}{{ .Site.Title }}{{ end }}">
|
|
<meta property="og:description" content="{{ $desc }}">
|
|
<meta property="og:url" content="{{ .Permalink }}">
|
|
<meta property="og:site_name" content="{{ .Site.Title }}">
|
|
{{ if .IsPage -}}
|
|
<meta property="og:type" content="article">
|
|
{{ with .Date }}<meta property="article:published_time" content="{{ .Format "2006-01-02T15:04:05Z07:00" }}">{{ end }}
|
|
{{ with .Lastmod }}<meta property="article:modified_time" content="{{ .Format "2006-01-02T15:04:05Z07:00" }}">{{ end }}
|
|
{{- else -}}
|
|
<meta property="og:type" content="website">
|
|
{{- end }}
|
|
|
|
{{/* Twitter */}}
|
|
<meta name="twitter:card" content="summary">
|
|
<meta name="twitter:title" content="{{ with .Title }}{{ . }}{{ else }}{{ .Site.Title }}{{ end }}">
|
|
<meta name="twitter:description" content="{{ $desc }}">
|