oliverdavies.uk/source/_includes/testimonials.html.twig
2024-01-03 23:06:04 +00:00

28 lines
752 B
Twig

<section>
<h2>Testimonials</h2>
<div class="space-y-8">
{% for testimonial in site.testimonials %}
<div>
<blockquote>
{{ testimonial.text|markdown }}
{% if testimonial.image %}
<img class="size-20 rounded-full" alt="Photo of {{ testimonial.name }}" src="{{ testimonial.image.url }}" />
{% endif %}
<footer>
{% if testimonial.url %}
<a href="{{ testimonial.url }}">
{{ testimonial.name }}, {{ testimonial.title }}
</a>
{% else %}
{{ testimonial.name }}, {{ testimonial.title }}
{% endif %}
</footer>
</blockquote>
</div>
{% endfor %}
</div>
</section>