mirror of https://github.com/istio/istio.io.git
14 lines
440 B
HTML
14 lines
440 B
HTML
{{ $caseStudyPages := where .Site.RegularPages "Type" "case-studies" }}
|
|
|
|
{{ with $caseStudyPages }}
|
|
<div class="case-study-suggestions">
|
|
<h1>{{ i18n "case_study_slogan" }}</h1>
|
|
|
|
<div class="panels panels--grid">
|
|
{{ range first 3 $caseStudyPages }}
|
|
{{ partial "case_study_panel.html" (dict "case_study" .Params "url" .RelPermalink) }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|