diff --git a/uw_fdsu_theme_resp.theme b/uw_fdsu_theme_resp.theme index b1f9941f62f5f9c1c9861043da3823b97ec862de..186950a10649c0d845c678cfdbbd6629940e6584 100644 --- a/uw_fdsu_theme_resp.theme +++ b/uw_fdsu_theme_resp.theme @@ -69,6 +69,10 @@ function uw_fdsu_theme_resp_preprocess_region(&$variables) { // The class that is used for the header. $variables['classes'][] = 'uw-header'; + // Get the site name for placing inside the menu. + $config = \Drupal::config('system.site'); + $variables['site_name'] = $config->get('name'); + $variables['faculty'] = theme_get_setting('wcms_colour_scheme', 'uw_fdsu_theme_resp') ? theme_get_setting('wcms_colour_scheme', 'uw_fdsu_theme_resp') : 'org-default'; } }