2020-07-29 21:58:28 +00:00
|
|
|
{{ $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>
|
2020-03-31 17:17:23 +00:00
|
|
|
{{ partial "header/google-analytics-head.html" }}
|
2018-12-13 18:47:02 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
2020-07-29 21:58:28 +00:00
|
|
|
{{ if eq $product nil }}
|
|
|
|
<title>InfluxData Documentation</title>
|
|
|
|
{{ else if eq $currentVersion nil}}
|
|
|
|
<title>{{ (index .Site.Data.products $product).name }} Documentation</title>
|
|
|
|
{{ else if eq (len $productPathData) 2 }}
|
|
|
|
<title>{{ (index .Site.Data.products $product).name }} {{ $currentVersion }} Documentation</title>
|
2019-03-13 22:09:53 +00:00
|
|
|
{{ else }}
|
2020-07-30 16:34:24 +00:00
|
|
|
<title>{{ if .Params.seotitle }} {{ print .Params.seotitle " | " }} {{ else if .Title }} {{ print .Title " | " }} {{ end }}{{ (index .Site.Data.products $product).name }} {{ if $currentVersion }}{{print $currentVersion " " }}{{ end }}Documentation</title>
|
2019-03-13 22:09:53 +00:00
|
|
|
{{ end }}
|
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">
|
2019-07-23 17:18:41 +00:00
|
|
|
<link rel="shortcut icon" href="/img/favicon.png" type="image/png" sizes="32x32">
|
2018-12-20 18:37:31 +00:00
|
|
|
|
2019-02-22 00:06:45 +00:00
|
|
|
{{ partial "header/canonical.html" . }}
|
2019-01-24 00:30:22 +00:00
|
|
|
{{ partial "header/stylesheets.html" }}
|
2020-03-31 17:17:23 +00:00
|
|
|
{{ partial "header/google-fonts.html" }}
|
2020-05-05 22:30:23 +00:00
|
|
|
{{ partial "header/marketing.html" }}
|
2019-01-24 00:30:22 +00:00
|
|
|
{{ partial "header/javascript.html" }}
|
2018-12-21 06:31:58 +00:00
|
|
|
|
|
|
|
<meta name="Copyright" content="InfluxData Inc." />
|
2018-12-13 18:47:02 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-03-31 17:17:23 +00:00
|
|
|
{{ partial "header/google-analytics-body.html" }}
|