31 lines
891 B
Twig
31 lines
891 B
Twig
---
|
|
layout: page
|
|
title: Testimonials
|
|
use: [posts]
|
|
---
|
|
{% block content %}
|
|
{% for testimonial in site.testimonials|reverse %}
|
|
<article class="testimonial">
|
|
<h2 class="testimonial__name">{{ testimonial.name }}</h2>
|
|
|
|
{% if testimonial.image %}
|
|
<img
|
|
class="testimonial__image pull-right img-circle"
|
|
src="{{ site.url }}/assets/images/testimonials/{{ testimonial.image }}"
|
|
alt="{{ testimonial.name }}"
|
|
/>
|
|
{% endif %}
|
|
|
|
{% if testimonial.role %}
|
|
<div class="testimonial__role text-light">
|
|
{{ testimonial.role|markdown }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{{ testimonial.text|markdown }}
|
|
</article>
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|
|
{% block body_classes 'page--testimonials' %}
|