|
|
@ -1,25 +1,26 @@ |
|
|
|
<!DOCTYPE html> |
|
|
|
<html lang="{{ .Site.Language.Lang }}"> |
|
|
|
<head> |
|
|
|
<link rel="shortcut icon" href="/images/favicon.ico"/> |
|
|
|
|
|
|
|
{{ with .OutputFormats.Get "rss" }} |
|
|
|
{{- printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML -}} |
|
|
|
<link rel="shortcut icon" href="/images/favicon.ico"> |
|
|
|
|
|
|
|
{{- with .OutputFormats.Get "rss" }} |
|
|
|
{{- printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML -}} |
|
|
|
{{ end }} |
|
|
|
|
|
|
|
<meta charset="utf-8"> |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
|
|
|
|
|
{{ if .Params.description -}} |
|
|
|
<meta name="description" content="{{ .Params.description }}"> |
|
|
|
{{ with (default .Site.Params.description .Params.description) -}} |
|
|
|
<meta name="description" content="{{- . -}}"> |
|
|
|
{{- end -}} |
|
|
|
|
|
|
|
{{ if .Params.keywords -}} |
|
|
|
<meta name="description" content="{{ delimit .Params.keywords "," }}"> |
|
|
|
{{ with .Params.keywords -}} |
|
|
|
<meta name="description" content="{{ delimit . "," }}"> |
|
|
|
{{- end }} |
|
|
|
|
|
|
|
{{ $style := resources.Get "/sass/main.scss" | resources.ToCSS -}} |
|
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}" /> |
|
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}"> |
|
|
|
|
|
|
|
<title> |
|
|
|
{{- block "title" . }}{{ .Site.Title }}{{ end -}} |
|
|
|