forked from opensearch-project/project-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds redesigned vector database page
Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>
- Loading branch information
Aaron Stephanus
committed
Aug 18, 2023
1 parent
967301c
commit 14af992
Showing
15 changed files
with
767 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<div class="solutions-card-grid"> | ||
{% if include.heading %} | ||
<h2>{{ include.heading }}</h2> | ||
{% endif %} | ||
<div class="solutions-card-grid--card-wrapper"> | ||
{% for callout in include.callouts %} | ||
<div class="solutions-card-grid--card-wrapper--card"> | ||
{% if callout.icon %} | ||
<div class="solutions-card-grid--card-wrapper--card--icon__left-label"> | ||
<div>{{ callout.name }}</div> | ||
<div> | ||
{% include icons.html type=callout.icon %} | ||
</div> | ||
</div> | ||
{% else %} | ||
<div class="solutions-card-grid--card-wrapper--card--label__no-icon"> | ||
{{ callout.name }} | ||
</div> | ||
{% endif %} | ||
<div class="solutions-card-grid--card-wrapper--card--content"> | ||
{{ callout.description }} | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
{% if include.cta_label and include.cta_url %} | ||
<div class="solutions-card-grid--call-to-action"> | ||
<div><a href="{{ include.cta_url }}">{{ include.cta_label }}</a></div> | ||
</div> | ||
{% endif %} | ||
</div> |
Oops, something went wrong.