25 lines
1.1 KiB
HTML
25 lines
1.1 KiB
HTML
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<link rel="stylesheet" href="/blog/css/style.css">
|
||
|
<link rel="icon" type="image/svg+xml" href="/blog/icon/favicon.svg">
|
||
|
<link rel="alternate icon" href="/blog/icon/favicon.ico">
|
||
|
|
||
|
<meta name="subject" content="{{ .Title }}">
|
||
|
<meta name="description" content="{{ .Description }}">
|
||
|
<meta name="url" content="{{ .Permalink }}">
|
||
|
<meta name="reply-to" content="contact@bbaovanc.com">
|
||
|
|
||
|
<meta name="og:type" content="website">
|
||
|
<meta name="og:title" content="{{ .Title }}">
|
||
|
<meta name="og:url" content="{{ .Permalink }}">
|
||
|
<meta name="og:site_name" content="bbaovanc's Website">
|
||
|
<meta name="og:description" content="{{ .Description }}">
|
||
|
<meta name="og:email" content="contact@bbaovanc.com">
|
||
|
<meta name="og:image" content="/blog/icon/bbaovanc-1024.png">
|
||
|
|
||
|
{{ range .AlternativeOutputFormats -}}
|
||
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
||
|
{{ end -}}
|
||
|
|
||
|
<title>{{ if not .IsHome }}{{ .Title }} - {{ end }}{{ .Site.Title }}</title>
|