2020-06-15 19:09:57 +00:00
<!doctype html>
< html lang = "{{ .Site.Language.Lang }}" class = "{{.Params.class}} no-js" >
2021-12-07 17:51:34 +00:00
{{- if eq hugo.Environment "preview" -}}
<!-- deploy preview -->
{{- end -}}
2022-06-14 12:49:49 +00:00
< head { { - if hugo . IsProduction } } class = "live-site" { { - end - } } >
2020-06-15 19:09:57 +00:00
{{ partial "head.html" . }}
< / head >
2024-08-14 00:15:13 +00:00
< body class = "td-{{ .Kind }}{{- if ne (lower .Params.cid) " " - } } { { - printf " cid- % s " ( lower . Params . cid ) - } } { { - end - } } { { with . Page . Params . body_class } } { { . } } { { 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" >
2024-06-10 07:27:06 +00:00
< main role = "main" class = "td-main" { { if ( or ( ne . FirstSection " case-studies " ) ( not . IsSection ) ) } } data-pagefind-body { { end } } >
2020-06-15 19:09:57 +00:00
{{ 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 >