11 lines
464 B
HTML
11 lines
464 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ .Title }} | {{ .Site.Title }}</title>
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}style.css">
|
|
{{ with .OutputFormats.Get "RSS" }}
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
|
{{ end }}
|
|
</head>
|