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

28 lines
752 B
Twig
Raw Normal View History

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