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

51 lines
1.5 KiB
Twig
Raw Normal View History

{% set limit = limit ?? 10 %}
{% set offset = offset ?? 0 %}
{% set testimonials = site.testimonials %}
2024-01-15 18:10:58 +00:00
{% if tag is not null %}
{% set testimonials = testimonials|filter(testimonial => tag in testimonial.tags) %}
2024-01-14 15:21:06 +00:00
{% endif %}
2024-01-03 20:00:00 +00:00
2024-01-15 18:10:58 +00:00
{% if limit > 0 %}
{% set testimonials = testimonials|slice(offset, limit) %}
{% endif %}
2024-01-03 20:00:00 +00:00
<section>
2024-01-03 20:00:00 +00:00
<h2 class="text-xl font-bold">{{ title|default('Testimonials') }}</h2>
2024-01-03 20:00:00 +00:00
2024-01-03 20:00:00 +00:00
<div class="mt-4 space-y-12">
{% for testimonial in testimonials %}
2024-01-03 20:00:00 +00:00
<div>
2024-02-28 09:05:00 +00:00
<div class="{{ site.prose_classes }}">
2024-01-03 20:00:00 +00:00
<blockquote>
2024-01-03 20:00:00 +00:00
{{ testimonial.text|markdown }}
</blockquote>
2024-01-03 20:00:00 +00:00
2024-02-28 09:05:00 +00:00
<div>
2024-01-03 20:00:00 +00:00
<footer class="mt-8 flex items-center space-x-4 space-x-reverse">
<span class="text-base">
{% if testimonial.url %}
2024-02-28 09:05:00 +00:00
<a href="{{ testimonial.url }}">{{ testimonial.name }}</a>
2024-01-03 20:00:00 +00:00
{% else %}
2024-01-03 20:00:00 +00:00
{{ testimonial.name }}
2024-02-28 09:05:00 +00:00
{% endif %}
{% if testimonial.title %}
- {{ testimonial.title }}
2024-01-03 20:00:00 +00:00
{% endif %}
2024-01-03 20:00:00 +00:00
</span>
2024-01-03 20:00:00 +00:00
{% if testimonial.image %}
2024-02-28 09:05:00 +00:00
<span class="not-prose order-first flex-shrink-0">
2024-03-22 15:30:47 +00:00
<img class="size-16 rounded-full ring-[3px] ring-blue-primary dark:ring-white" alt="Photo of {{ testimonial.name }}" src="{{ testimonial.image.url }}" />
2024-01-03 20:00:00 +00:00
</span>
{% endif %}
</footer>
</div>
</div>
2024-01-03 20:00:00 +00:00
</div>
2024-01-03 20:00:00 +00:00
{% endfor %}
</div>
</section>