forked from opensearch-project/project-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
19 lines (16 loc) · 896 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
layout: fullwidth
title: Testimonials
primary_title: Testimonials
body_class: testimonials-page
intro: OpenSearch is helping developers solve a range of problems. This page highlights what people are saying about OpenSearch and how they are participating in the project.
conclusion: "Interested in sharing your OpenSearch story? To add your testimonial to this page, please create a fork the [project website](https://github.com/opensearch-project/project-website), add a markdown file for your project under `/_testimonials/your-testimonial.md` , and submit a pull request."
---
{{page.intro | markdownify }}
<div class="testimonials">
{% assign filter_testimonial = site.testimonials | where: "featured","true" %}
{% for testimonial in filter_testimonial %}
{% include testimonial.html testimonial=testimonial %}
{% endfor %}
</div>
{{page.conclusion | markdownify }}