Skip to content

Commit

Permalink
Adds redesigned vector database page
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>
  • Loading branch information
Aaron Stephanus committed Aug 18, 2023
1 parent 967301c commit 14af992
Show file tree
Hide file tree
Showing 15 changed files with 767 additions and 0 deletions.
11 changes: 11 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@ defaults:
type: speaker_sessions
values:
layout: speaker_session
-
scope:
type: platforms
values:
permalink: platform/:categories/:name.html

collections:
authors:
Expand Down Expand Up @@ -118,6 +123,12 @@ collections:
output: true
speaker_sessions:
output: true
redesign_use_cases:
output: true
redesign_resources:
output: true
platforms:
output: true


paginate: 5
Expand Down
31 changes: 31 additions & 0 deletions _includes/callout-cards.html
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>
Loading

0 comments on commit 14af992

Please sign in to comment.