This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/testimonials.html.twig

31 lines
891 B
Twig

---
layout: page
title: Testimonials
use: [posts]
---
{% block content %}
{% for testimonial in site.testimonials|reverse %}
<article class="testimonial">
<h2 class="testimonial__name">{{ testimonial.name }}</h2>
{% if testimonial.image %}
<img
class="testimonial__image pull-right img-circle"
src="{{ site.url }}/assets/images/testimonials/{{ testimonial.image }}"
alt="{{ testimonial.name }}"
/>
{% endif %}
{% if testimonial.role %}
<div class="testimonial__role text-light">
{{ testimonial.role|markdown }}
</div>
{% endif %}
{{ testimonial.text|markdown }}
</article>
{% endfor %}
{% endblock %}
{% block body_classes 'page--testimonials' %}