From cb90dcce1bf97531ada6cc3300938a8a96673ae9 Mon Sep 17 00:00:00 2001
From: Dave Long <dave@longwaveconsulting.com>
Date: Wed, 21 Jun 2023 22:45:04 +0100
Subject: [PATCH] Issue #3358575 by Amber Himes Matz, Rassoni, sourabhjain,
 smustgrave, andypost: Update topic contact.setting_default to use route
 instead of "/contact"

---
 .../help_topics/help_topics/contact.setting_default.html.twig | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/core/modules/help_topics/help_topics/contact.setting_default.html.twig b/core/modules/help_topics/help_topics/contact.setting_default.html.twig
index 00e4febb2b8d..79c19781516b 100644
--- a/core/modules/help_topics/help_topics/contact.setting_default.html.twig
+++ b/core/modules/help_topics/help_topics/contact.setting_default.html.twig
@@ -5,8 +5,10 @@ related:
 ---
 {% set contact_link_text %}{% trans %}Contact forms{% endtrans %}{% endset %}
 {% set contact_link = render_var(help_route_link(contact_link_text, 'entity.contact_form.collection')) %}
+{% set contact_page_link_text %}{% trans %}the form displayed on the default contact page{% endtrans %}{% endset %}
+{% set contact_page_link = render_var(help_route_link(contact_page_link_text, 'contact.site_page')) %}
 <h2>{% trans %}Goal{% endtrans %}</h2>
-<p>{% trans %}Set a site-wide contact form to be the default contact form (the form that is shown on the <em>/contact</em> URL).{% endtrans %}</p>
+<p>{% trans %}Set a site-wide contact form to be the default contact form ({{ contact_page_link }}; for example, <em>/contact</em>).{% endtrans %}</p>
 <h2>{% trans %}Steps{% endtrans %}</h2>
 <ol>
   <li>{% trans %}In the <em>Manage</em> administrative menu, navigate to <em>Structure</em> &gt; <em>{{ contact_link }}</em>.{% endtrans %}</li>
-- 
GitLab