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

33 lines
968 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-25 23:13:04 +00:00
<article class="testimonial mb-3">
<h2 class="testimonial__name is-marginless">{{ testimonial.name }}</h2>
2017-07-11 00:08:32 +00:00
{% if testimonial.image %}
2017-07-11 17:56:05 +00:00
<img
2017-07-25 23:13:04 +00:00
class="testimonial__image is-pulled-right is-circle"
2017-07-11 17:56:05 +00:00
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 %}
2017-07-25 23:13:04 +00:00
<div class="mt-1">
{{ testimonial.text|markdown }}
</div>
2017-07-11 00:08:32 +00:00
</article>
{% endfor %}
{% endblock %}
{% block body_classes 'page--testimonials' %}