1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-02 00:05:37 +01:00
site/_src/_includes/testimonials.html
Matthias Kretschmann ffd8e6187b setup for testimonials component
- auto fitting grid, max of 3 columns
- all copy from yml data file
2016-02-19 20:36:09 +01:00

24 lines
659 B
HTML

<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>
<div class="testimonial__image">
<img class="testimonial__avatar" src="/assets/img/{{ testimonial.image }}">
</div>
<figcaption class="testimonial__caption">
{{ testimonial.name }} &bull; &bull; {{ testimonial.org }}
</figcaption>
</figure>
</div>
{% endfor %}
</article>