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
Raw Normal View History

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