blob: f44233d10c55ecd0fbbf9ccbd1c2583caf508583 [file]
{{/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. See accompanying LICENSE file.
*/}}
<!DOCTYPE html>
<html lang="{{ .Site.Language.Lang }}" class="no-js">
<head>
{{ partial "head.html" . }}
</head>
<body class="body" data-spy="scroll" data-target=".page-nav" data-offset="0">
{{ partial "header.html" . }}
<div class="clearfix container-main-content">
<nav class="page-nav clearfix" data-offset-top="90" data-offset-bottom="500">
{{ .TableOfContents }}
</nav>
<div class="{{ if .Params.hasNav }}body__contained body__section-no-nav--wide{{ end }} case-study-page">
{{ block "main" . }}{{ end }}
</div>
</div>
{{ partial "footer.html" . }}
<script>
// Handle case study feedback buttons
function sendCaseStudyFeedback(isUseful, name) {
ga('send', 'event', 'Case Study Feedback', 'Click', name + (isUseful ? ', yes' : ', no'));
var caseStudyFeedbackContainerId = 'case-study-feedback';
const container = document.getElementById(caseStudyFeedbackContainerId)
container.innerHTML = '<p class="case-study-feedback-title">Thank you for your feedback!</p>'
}
</script>
</body>
</html>