2020-06-15 19:09:57 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="{{ .Site.Language.Lang }}" class="{{.Params.class}} no-js">
|
|
|
|
<head>
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
</head>
|
2021-10-03 16:20:37 +00:00
|
|
|
<body class="td-{{ .Kind }}{{- if ne (lower .Params.cid) "" -}}{{- printf " cid-%s" (lower .Params.cid) -}}{{- end -}}">
|
2020-06-15 19:09:57 +00:00
|
|
|
<header>
|
|
|
|
{{ partial "navbar.html" . }}
|
2021-10-13 21:47:29 +00:00
|
|
|
{{ block "announcement" . }}
|
2020-06-04 21:20:16 +00:00
|
|
|
{{ partial "announcement.html" . }}
|
|
|
|
{{ end }}
|
2018-05-05 16:00:51 +00:00
|
|
|
{{ block "hero" . }}
|
|
|
|
<!-- HERO -->
|
2020-06-15 19:09:57 +00:00
|
|
|
<section class="header-hero text-white pb-4 light-text">
|
2019-10-27 11:43:24 +00:00
|
|
|
<div class="main-section">
|
2018-05-05 16:00:51 +00:00
|
|
|
<div id="headlineWrapper">
|
|
|
|
<h1>{{ block "hero-title" . }}{{ .Params.bigheader | default .Title }}{{ end }}</h1>
|
|
|
|
</div>
|
|
|
|
{{ block "hero-more" . }}{{ end }}
|
2019-10-27 11:43:24 +00:00
|
|
|
</div>
|
2018-05-05 16:00:51 +00:00
|
|
|
</section>
|
2020-06-09 20:46:05 +00:00
|
|
|
{{ block "post-hero" . }}
|
2021-10-13 21:47:29 +00:00
|
|
|
</header>
|
2020-06-09 20:46:05 +00:00
|
|
|
{{ block "deprecated" . }}
|
2020-08-08 15:47:04 +00:00
|
|
|
{{ if or .IsHome ( eq .Params.cid "partners" ) ( eq .Params.cid "community" ) }}
|
2020-06-09 20:46:05 +00:00
|
|
|
{{ partial "deprecation-warning.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2018-05-05 16:00:51 +00:00
|
|
|
{{ end }}
|
2020-06-15 19:09:57 +00:00
|
|
|
<div class="td-outer">
|
|
|
|
<main role="main" class="td-main">
|
|
|
|
{{ block "main" . }}{{ end }}
|
|
|
|
</main>
|
|
|
|
</div>
|
2021-10-13 21:47:29 +00:00
|
|
|
{{ partialCached "footer.html" . }}
|
2020-06-15 19:09:57 +00:00
|
|
|
{{ partialCached "scripts.html" . }}
|
|
|
|
</body>
|
2020-06-04 21:20:16 +00:00
|
|
|
</html>
|