This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/web/themes/dcb2017/dcb2017.theme
2017-03-31 12:22:46 +01:00

16 lines
314 B
Plaintext

<?php
/**
* Theming stuff goes here!
*/
/**
* Implements template_preprocess_html().
*/
function dcb2017_preprocess_html(&$variables) {
if (\Drupal::service('path.matcher')->isFrontPage()) {
$site_config = \Drupal::config('system.site');
$variables['head_title'] = $site_config->get('name');
}
}