3
0
Fork 0
website/layouts/partials/header.html

29 lines
669 B
HTML
Raw Normal View History

2018-07-01 01:17:14 +08:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2018-09-03 18:45:04 +08:00
{{ if .Description }}
<meta name="description" content="{{ .Description }}">
{{ end }}
<link rel="icon" type="image/png" href="{{ "/images/icon.png" | relURL }}">
2018-07-01 01:17:14 +08:00
<title>
2018-09-03 18:45:04 +08:00
{{ $url := replace .Permalink .Site.BaseURL "" }}
2018-07-01 01:17:14 +08:00
{{ if eq $url "/" }}
2018-09-03 18:45:04 +08:00
{{ .Site.Title }} - {{ .Site.Params.Subtitle }}
2018-07-01 01:17:14 +08:00
{{ else }}
2018-09-03 18:45:04 +08:00
{{ .Site.Title }} - {{ .Title }}
2018-07-01 01:17:14 +08:00
{{ end }}
</title>
<link rel="canonical" href="{{ .Permalink }}">
{{ partial "resources.html" . }}
</head>
<body>
{{ partial "badbrowser.html" . }}