Add Mattieu Scarset to the Home page
This commit is contained in:
parent
f412ac7978
commit
f58dea6bc6
|
@ -1,4 +1,5 @@
|
||||||
{% set defaultNames = [
|
{% set defaultNames = [
|
||||||
|
"Matthieu Scarset",
|
||||||
"Mike Karthauser",
|
"Mike Karthauser",
|
||||||
"Tawny Bartlett",
|
"Tawny Bartlett",
|
||||||
"Joe Howell",
|
"Joe Howell",
|
||||||
|
@ -19,7 +20,11 @@
|
||||||
"Anonymous",
|
"Anonymous",
|
||||||
] %}
|
] %}
|
||||||
|
|
||||||
|
{% if not merge %}
|
||||||
{% set names = names|default(defaultNames) %}
|
{% set names = names|default(defaultNames) %}
|
||||||
|
{% else %}
|
||||||
|
{% set names = names|merge(defaultNames) %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<h2 class="text-xl font-bold">{{ title|default('Testimonials') }}</h2>
|
<h2 class="text-xl font-bold">{{ title|default('Testimonials') }}</h2>
|
||||||
|
|
|
@ -33,6 +33,8 @@ Here are all of my [products and services][pricing]. If you still can't find wha
|
||||||
{% block content_bottom %}
|
{% block content_bottom %}
|
||||||
{% include 'testimonials.html.twig' with {
|
{% include 'testimonials.html.twig' with {
|
||||||
title: 'Kind words from clients, subscribers, and past colleagues',
|
title: 'Kind words from clients, subscribers, and past colleagues',
|
||||||
|
merge: true,
|
||||||
|
names: ["Matthieu Scarset"],
|
||||||
} %}
|
} %}
|
||||||
|
|
||||||
{% include 'daily-email-form.html.twig' with {
|
{% include 'daily-email-form.html.twig' with {
|
||||||
|
|
Loading…
Reference in a new issue