mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
24 lines
805 B
HTML
24 lines
805 B
HTML
|
|
<article class="testimonials grid grid--full grid-medium--fit grid--gutters">
|
|
|
|
{% for testimonial in site.data.testimonials.[page.quotes] %}
|
|
|
|
<div class="grid__col">
|
|
<figure class="testimonial">
|
|
|
|
<blockquote class="testimonial__quote">{{ testimonial.quote }}</blockquote>
|
|
|
|
<figcaption class="testimonial__caption">
|
|
<img class="testimonial__avatar" src="/assets/img/{{ testimonial.image }}">
|
|
<cite class="testimonial__cite">
|
|
<span class="testimonial__name">{{ testimonial.name }}</span>
|
|
<span class="testimonial__org"><a href="{{ testimonial.link }}">{{ testimonial.org }}</a></span>
|
|
</cite>
|
|
</figcaption>
|
|
</figure>
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</article>
|