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

55 lines
2.2 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-01-03 20:00:00 +00:00
<div class="italic prose prose-p:text-black prose-a:font-light prose-a:text-blue-primary prose-p:text-lg prose-blockquote:border-blue-primary dark:marker:text-white prose-li:my-1 prose-li:text-lg prose-figcaption:text-white prose-li:text-black marker:text-black dark:prose-p:text-white dark:prose-invert dark:prose-a:text-blue-400 dark:prose-blockquote:border-blue-400 dark:prose-li:text-white hover:prose-a:no-underline prose-h2:text-xl prose-code:font-normal prose-h2:mb-4 prose-ul:my-3 dark:prose-hr:border-grey-400 prose-code:before:content-[''] prose-code:after:content-['']">
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-01-03 20:00:00 +00:00
<div class="not-prose">
<footer class="mt-8 flex items-center space-x-4 space-x-reverse">
<span class="text-base">
{% if testimonial.url %}
<a href="{{ testimonial.url }}">
2024-01-03 20:00:00 +00:00
{{ testimonial.name }}
{% if testimonial.title %}
- {{ testimonial.title }}
{% endif %}
2024-01-03 20:00:00 +00:00
</a>
{% else %}
2024-01-03 20:00:00 +00:00
{{ testimonial.name }}
{% if testimonial.title %}
- {{ testimonial.title }}
{% endif %}
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 %}
<span class="order-first flex-shrink-0">
<img class="size-16 rounded-full ring-2 ring-grey-500 dark:ring-white" alt="Photo of {{ testimonial.name }}" src="{{ testimonial.image.url }}" />
</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>