Files
landing_page/qdrant-landing/themes/qdrant-2024/layouts/partials/security/deployment-model.html
T

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 }}