mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-26 22:48:30 +02:00
28 lines
967 B
HTML
28 lines
967 B
HTML
{{ with (.Site.GetPage "/security/deployment-model") }}
|
|
{{ $tables := .Params.tables | default slice }}
|
|
{{ $showTabs := gt (len $tables) 1 }}
|
|
|
|
<section class="security-deployment-model">
|
|
<div class="container">
|
|
<h2 class="security-deployment-model__title">{{ .Params.title }}</h2>
|
|
|
|
{{ range $index, $table := $tables }}
|
|
{{ if and $table.cols (or $table.features $table.sections) }}
|
|
<div
|
|
class="security-deployment-model__table-wrapper{{ if and $showTabs (gt $index 0) }} security-deployment-model__table-wrapper--hidden{{ end }}"
|
|
data-features-tab="{{ $table.id }}"
|
|
>
|
|
{{ partial "features-table" (dict
|
|
"cols" $table.cols
|
|
"features" $table.features
|
|
"featureCellWidth" $table.featureCellWidth
|
|
"modifier" "dark"
|
|
)
|
|
}}
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</section>
|
|
{{ end }}
|