docs-v2/layouts/partials/header.html

27 lines
1.4 KiB
HTML
Raw Normal View History

2019-10-15 19:29:29 +00:00
{{ $currentVersion := replaceRE "v" "" (index (findRE "[^/]+.*?" .RelPermalink) 0) }}
2018-12-13 18:47:02 +00:00
<!doctype html>
<html lang="en">
<head>
{{ 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">
{{ if in .RelPermalink "/cloud/"}}
<title>{{ if .Params.seotitle }} {{ print .Params.seotitle " | " }} {{ else if .Title }} {{ print .Title " | " }}{{ end }}{{ .Site.Data.products.cloud.name }} Documentation</title>
{{ else }}
<title>{{ if .Params.seotitle }} {{ print .Params.seotitle " | " }} {{ else if .Title }} {{ print .Title " | " }} {{ end }}InfluxDB {{ if $currentVersion }}{{print $currentVersion " " }}{{ end }}Documentation</title>
{{ 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">
<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" }}
<meta name="Copyright" content="InfluxData Inc." />
2018-12-13 18:47:02 +00:00
</head>
<body>
{{ partial "header/google-analytics-body.html" }}
{{ partial "topnav.html" . }}