1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-01 15:55:36 +01:00
site/_src/_includes/testimonials.html

24 lines
779 B
HTML
Raw Normal View History

<article class="testimonials grid grid--full grid-medium--fit grid--gutters">
{% for testimonial in site.data.testimonials %}
<div class="grid__col">
<figure class="testimonial">
<blockquote class="testimonial__quote">{{ testimonial.quote }}</blockquote>
<figcaption class="testimonial__caption">
2016-02-14 16:46:09 +01:00
<img class="testimonial__avatar" src="{{ 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>