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
940 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-08-06 18:01:22 +00:00
<article class="is-clearfix mb-3">
<h2 class="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
src="{{ site.url }}/assets/images/testimonials/{{ testimonial.image }}"
2017-08-06 18:01:22 +00:00
class="testimonial-image is-pulled-right is-circle ml-2 mb-1"
2017-07-11 17:56:05 +00:00
alt="{{ testimonial.name }}"
2017-08-06 18:01:22 +00:00
>
2017-07-11 00:08:32 +00:00
{% endif %}
{% if testimonial.role %}
2017-08-06 18:01:22 +00:00
<div class="text-light">
2017-07-11 17:56:05 +00:00
{{ 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' %}