From baba4d8cc296e9a40ad2d6f4227080c2b73f8577 Mon Sep 17 00:00:00 2001 From: Michael Hawkins Date: Tue, 18 Oct 2022 17:48:50 +0800 Subject: [PATCH] MDL-76020 theme: Add missing support links to footer in Classic theme The "Services and support" and "Contact site support" links were missing from the footer in the Classic theme (which now has its own footer template), so there was no way to navigate to the relevant links. --- theme/classic/templates/footer.mustache | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/theme/classic/templates/footer.mustache b/theme/classic/templates/footer.mustache index e40ecf3c68a..e1cdd892682 100644 --- a/theme/classic/templates/footer.mustache +++ b/theme/classic/templates/footer.mustache @@ -22,8 +22,11 @@ Example context (json): { "output": { - "course footer": "More information about this course", - "page_doc_link": "Help and documentation" + "course_footer": "More information about this course", + "page_doc_link": "Help and documentation", + "login_info": "You are logged in as cute kitten", + "supportemail": "Contact site support", + "services_support_link": "Services and support" } } }} @@ -31,9 +34,17 @@