19 lines
682 B
HTML
19 lines
682 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
|
|
{{ if .IsHome }}
|
|
<meta name="description" content="{{ $.Site.Params.description }}">
|
|
<title>{{.Site.Title}}</title>
|
|
{{ else }}
|
|
<title>{{.Site.Title}} / {{ .Title }}</title>
|
|
<meta name="description" content="{{ .Summary }}">
|
|
{{ end }}
|
|
|
|
<link href="/blog/index.xml" rel="alternate" type="application/rss+xml" title="{{ $.Site.Author.name }}'s blog">
|
|
|
|
<link rel="shortcut icon" href="/favicon2.ico" type="image/x-icon">
|
|
<link rel="icon" href="/favicon180.png" type="image/png">
|
|
<link rel="mask-icon" href="/safari-mask.svg" color="#9c4c4c">
|
|
|
|
<meta name="robots" content="noai">
|
|
</head>
|