oliverdavies.uk/source/_pages/recommendations.html.twig

139 lines
7.8 KiB
Twig
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Recommendations
recommendations:
-
name: Ed Welsby
tagline: Senior Developer at Proctor & Stevenson
text: |
<p>Oliver was great to work with, he has a solid knowledge of the various aspects of web development and never minded helping me out with Linux commands!</p>
image:
path: /sites/default/files/styles/recommendation/public/2020-07/ed-welsby.png
-
name: Brian Healy
tagline: Director of Business Development at Tincan
text: |
<p>Oliver was fantastic to work with - pro-active and highly responsive, he worked well remotely and as part of a project team. His understanding of the project requirement(s) and ability to translate it into working code was essential and he delivered.</p>
image:
path: /sites/default/files/styles/recommendation/public/2020-07/brian-healy.png
-
name: Marlon Duncanson
tagline: 'Brand & Web Specialist'
text: |
<p>Oliver is a great guy and really easy to work with. He really goes the extra mile to make sure the project is done properly. I would recommend him and will not hesitate to use him again in future.</p>
image: ~
-
name: Brian Hartwell
tagline: Interactive Creative Director
text: |
<p>Oliver was great to work with. He has expert knowledge with Drupal and delivered exactly what we were looking for on time. He's understanding, friendly and easy to get along with. I would enjoy working with him again in the future.</p>
image: ~
-
name: Daniel Easterbrook
tagline: Digital Strategy Consultant
text: |
<p>Oliver is seasoned Drupal and all round highly skilled and experienced web developer. I have worked with Oliver on an important project where he was reliable, prompt and ensured strict client deadline delivery and confidentiality at all times.</p>
image: ~
-
name: James Chapman
tagline: Director at Development Done Right
text: |
<p>We used Oliver on a number of occasions throughout 2012 and I have to say we've been delighted with his work. His skills working with Drupal are excellent particularly with custom module development and we wouldnt hesitate to recommend him others.</p>
image:
path: /sites/default/files/styles/recommendation/public/2020-07/james-chapman.png
-
name: Léonie Watson
tagline: Director of Accessibility at Nomensa
text: |
<p>Oliver is a flexible and hardworking developer, with a terrific knowledge of Drupal. He promotes accessibility best practice within the Drupal community, and is always happy to share his knowledge with other people.</p>
image:
path: /sites/default/files/styles/recommendation/public/2020-07/leonie-watson.jpg
-
name: Holly Ross
tagline: Executive Director at Drupal Association
text: |
<p>Oliver has been an outstanding contributor to the Drupal Association team. He is a talented developer who writes great code and applies his curiosity and love of learning to every project. He is also a fantastic team member, who gives to the team as much as he gets.</p>
<p>Oliver is the embodiment of everything good about the Drupal community.</p>
image:
path: /sites/default/files/styles/recommendation/public/2020-07/holly-ross.png
-
name: Josh Mitchell
tagline: CTO at Drupal Association
text: |
<p>Oliver is a skilled Drupal developer with a passion for the Drupal community. As his direct supervisor, I was able to watch Oliver grow with the Drupal Association and contribute an amazing amount of effort and integrity to all of his work.</p>
<p>Everything we have thrown at Oliver, he has approached with an open and flexible mind that has allowed him to work on a wide range of projects and features for Drupal products.</p>
image:
path: /sites/default/files/styles/recommendation/public/2020-07/josh-mitchell.png
-
name: Chris Jarvis
tagline: Developer at Microserve
text: |
<p>Oliver is an amazing colleague, he's professional, full of knowledge and I could not recommend him more.</p>
image:
path: /sites/default/files/styles/recommendation/public/2020-07/chris-jarvis.jpg
-
name: Owen Phillips
tagline: Director at Operation Fitness Ltd
text: |
<p>I have been working to build and develop my website with Oliver over the last year and I couldn't recommend higher. His ideas, knowledge and completion are to a very high standard and I look forward to continuing my build with him.</p>
image:
path: /sites/default/files/styles/recommendation/public/2020-07/owen-phillips.jpeg
-
name: Chris Knox
tagline: Creative Director
text: |
<p>Oliver is a skilled and enthusiastic developer, always putting the clients interests first. His approach to work is diligent and confident and this makes working with him a pleasure!</p>
image:
path: /sites/default/files/styles/recommendation/public/2020-07/chris-knox.jpeg
-
name: Jon Hallett
tagline: Senior Systems Administrator at the University of Bristol
text: |
<p>We use Oliver for maintaining a couple of Drupal sites for which we no longer have the skills ourselves. We became aware of Oliver through his work in the Drupal community, and about a year ago we approached him to help us with the deep dive aspects of maintaining and developing Drupal sites. He's been really helpful and very responsive. Much appreciated!</p>
image:
path: /sites/default/files/styles/recommendation/public/2020-07/jon-hallett_0.jpeg
-
name: Alan Hatch
tagline: Senior Drupal Developer at Microserve
text: |
<p>I have had the pleasure of working with Oliver on several projects at Microserve. He is a natural innovator and a great mentor who inspires others to explore new technologies and approaches. He is a highly knowledgeable professional with a passion for all things Drupal and the tenacity required to get the job done well.</p>
image:
path: /images/recommendations/alan.jpeg
-
name: Adam Cuddihy
tagline: Web Development Manager
text: |
<p>A fantastic and highly knowledgeable Drupal Developer. Oliver saved a struggling Drupal project with his wealth of Drupal experience.</p>
image:
path: /images/recommendations/adam.jpeg
-
name: Duncan Davidson
tagline: Director at Rohallion
text: |
<p>Oliver is a pleasure to work with, and I would engage him again without hesitation. He communicates regularly, ensures that he meets requirements, and suggests improvements to the potential solutions to the brief.</p>
image:
path: /images/recommendations/duncan.jpeg
---
<div class="space-y-8">
{% for recommendation in page.recommendations|reverse %}
<article>
<h2>{{ recommendation.name }}</h2>
<header>{{ recommendation.tagline }}</header>
<div class="mt-4">
<div class="flex flex-col-reverse md:flex-row space-y-3 space-y-reverse md:space-y-0 md:space-x-6">
<div class="markdown">
{{ recommendation.text|raw }}
</div>
{% if recommendation.image.path %}
<div class="flex-shrink-0">
<img class="w-16 md:w-24 border border-gray rounded-full bg-white" src="{{ recommendation.image.path }}">
</div>
{% endif %}
</div>
</div>
</article>
{% endfor %}
</div>