oliverdavies.uk/source/_includes/testimonials.html.twig

26 lines
677 B
Twig
Raw Normal View History

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