From aa54a5882a67078d48db51d49bfface41c9b9e3c Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 3 Jan 2024 20:00:00 +0000 Subject: [PATCH] Add a default list of testimonial names --- source/_includes/testimonials.html.twig | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/source/_includes/testimonials.html.twig b/source/_includes/testimonials.html.twig index 2daa4c9e..cfc20c15 100644 --- a/source/_includes/testimonials.html.twig +++ b/source/_includes/testimonials.html.twig @@ -1,3 +1,25 @@ +{% set defaultNames = [ + "Mike Karthauser", + "Tawny Bartlett", + "Joe Howell", + "Jon Hallett", + "Michael Itkoff", + "Mick Felton", + "Duncan Davidson", + "Adam Cuddihy", + "Huw Davies", + "Scott Euser", + "Brian Hartwell", + "Alan Hatch", + "Holly Ross", + "Josh Mitchell", + "Brian Healy", + "Chris Jarvis", + "Daniel Easterbrook", + "Anonymous", +] %} + +{% set names = names|default(defaultNames) %}

{{ title|default('Testimonials') }}