docs-v2/layouts/partials/header.html

30 lines
1.4 KiB
HTML
Raw Permalink Normal View History

{{ $productPathData := findRE "[^/]+.*?" .RelPermalink }}
{{ $product := index $productPathData 0 }}
{{ $currentVersion := index $productPathData 1 }}
2018-12-13 18:47:02 +00:00
<!doctype html>
<html lang="en">
<head>
{{ if not hugo.IsServer }}{{ partial "header/google-analytics-head.html" }}{{ end }}
2018-12-13 18:47:02 +00:00
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
{{ partial "header/title" . }}
2019-02-22 17:26:45 +00:00
<meta name="description" content="{{ if .Description }}{{ .Description | markdownify | plainify }}{{else}}{{ .Summary | markdownify | plainify }}{{ end }}">
2018-12-13 18:47:02 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="shortcut icon" href="/img/favicon.png" type="image/png" sizes="32x32">
{{ partial "header/canonical.html" . }}
2019-01-24 00:30:22 +00:00
{{ partial "header/stylesheets.html" }}
{{ partial "header/google-fonts.html" }}
2019-01-24 00:30:22 +00:00
{{ partial "header/javascript.html" }}
{{ partial "header/search-attributes.html" . }}
{{ partial "header/coveo-meta-data.html" . }}
{{ if not hugo.IsServer }}{{ partial "header/marketing.html" }}{{ end }}
<meta name="Copyright" content="InfluxData Inc." />
2018-12-13 18:47:02 +00:00
</head>
<body class='{{if ne $product nil}}{{ $product }}{{ else }}home{{ end }}{{ if in $currentVersion "v1" }} v1{{ end }}'>
{{ if not hugo.IsServer }}{{ partial "header/google-analytics-body.html" }}{{ end }}