{{ partial "header.html" . }} {{ partial "navbar.html" . }} {{ $publicreview := slice }} {{ range where .Site.RegularPages "Section" "specifications" }} {{ if .Param "publicreview" }} {{ $reviewenddate := .Date.AddDate 0 0 30 }} {{ if lt now $reviewenddate }} {{ $publicreview = $publicreview | append (printf "%s/%s" "specifications" .File.BaseFileName) }} {{ end }} {{ end }} {{ end }} {{ range where .Site.RegularPages "Section" "compliance" }} {{ if .Param "publicreview" }} {{ $reviewenddate := .Date.AddDate 0 0 30 }} {{ if lt now $reviewenddate }} {{ $publicreview = $publicreview | append (printf "%s/%s" "compliance" .File.BaseFileName) }} {{ end }} {{ end }} {{ end }} {{ $promobackgroundimagename := .Param "image" }} {{ $promobackgroundimagelocation := (printf "%s/%s" "images/technical/" $promobackgroundimagename) }} {{ $promobackgroundimageresource := resources.Get $promobackgroundimagelocation }} {{ $promobackgroundimage := $promobackgroundimageresource.Resize "1440x820 webp" }}

{{ .Title }}

 
{{ .Content }}
 
{{ range .Data.Pages }} {{ $imagename := .Param "image" }} {{ $imagelocation := (printf "%s/%s" "images/groups/" $imagename) }} {{ $imageresource := resources.Get $imagelocation }}
{{ if $imageresource }}
{{ $image := $imageresource.Fit "390x390 webp" }}
{{ end }} {{ .Title }}
{{ end }}
{{ if ne (len $publicreview) 0 }}
 

Technical Documents in Public Review

 
 
    {{ range $prp := $publicreview }} {{ with $.Site.GetPage $prp }}
  • {{ .Title }} {{ end }} {{ end }}
 
{{ end }}
{{ partial "footer.html" . }}