diff --git a/source/_includes/testimonials.html.twig b/source/_includes/testimonials.html.twig
index c0b41e49f..cf45ba21b 100644
--- a/source/_includes/testimonials.html.twig
+++ b/source/_includes/testimonials.html.twig
@@ -1,4 +1,5 @@
{% set defaultNames = [
+ "Matthieu Scarset",
"Mike Karthauser",
"Tawny Bartlett",
"Joe Howell",
@@ -19,7 +20,11 @@
"Anonymous",
] %}
-{% set names = names|default(defaultNames) %}
+{% if not merge %}
+ {% set names = names|default(defaultNames) %}
+{% else %}
+ {% set names = names|merge(defaultNames) %}
+{% endif %}
{{ title|default('Testimonials') }}
diff --git a/source/_pages/index.md b/source/_pages/index.md
index c41a606fd..aaeeec3cd 100644
--- a/source/_pages/index.md
+++ b/source/_pages/index.md
@@ -33,6 +33,8 @@ Here are all of my [products and services][pricing]. If you still can't find wha
{% block content_bottom %}
{% include 'testimonials.html.twig' with {
title: 'Kind words from clients, subscribers, and past colleagues',
+ merge: true,
+ names: ["Matthieu Scarset"],
} %}
{% include 'daily-email-form.html.twig' with {