mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-27 15:08:30 +02:00
* new page for benchmarks with example plots * wip: cahrt * add precision selector * upd * stats file * select data for the table * added a benchmark table * upd table visualization * upd bench graph * benchmarks list layout * upd benchmark layout + add text * upd * upd wording * typo * Benchmarks page single page layout (#74) * all benchmarks in one page * add faq page * move how-to-contribute in faq section * upds Co-authored-by: Andrey Vasnetsov <andrey@vasnetsov.com>
62 lines
1.7 KiB
HTML
62 lines
1.7 KiB
HTML
{{ define "main" }}
|
|
|
|
{{ range $i,$p := where .Data.Pages "Section" "benchmarks" }}
|
|
|
|
|
|
|
|
|
|
<div class="auto-container pt-3 pt-md-5 single-page">
|
|
<div class="row clearfix">
|
|
<!-- Content Side -->
|
|
<section class="content-side col-lg-12 col-md-12 col-sm-12">
|
|
{{ .Scratch.Set "scope" "single" }}
|
|
{{ $link := .Permalink }}
|
|
{{ if .Params.external_link }}
|
|
{{ $link = .Params.external_link }}
|
|
{{ end }}
|
|
|
|
<div class="news-block-two blog-detail">
|
|
|
|
|
|
<div class="inner-box">
|
|
|
|
{{ if .Description }}
|
|
<article class="article">
|
|
<h1>{{ .Title }}</h1>
|
|
<p>{{ .Description }}</p>
|
|
</article>
|
|
{{ end }}
|
|
|
|
|
|
|
|
|
|
{{ if .Params.data }}
|
|
<div class="auto-container pt-3 pt-md-5 single-page">
|
|
<div class="row clearfix">
|
|
<section class="content-side col-lg-12 col-md-12 col-sm-12">
|
|
{{ partial "benchmark_chart" . }}
|
|
</section>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
|
|
|
|
|
|
|
|
|
|
<div class="lower-box pt-0">
|
|
<article class="article">
|
|
{{ .Content }}
|
|
</article>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ end }}
|
|
{{ end }} |