This repository has been archived on 2025-09-29. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/2017/web/themes/dcb2017/dcb2017.theme

23 lines
416 B
Text
Raw Permalink Normal View History

2017-03-31 12:22:46 +01:00
<?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');
}
}
2017-05-22 15:13:53 +01:00
/**
* Implements template_preprocess_node().
*/
function dcb2017_preprocess_node(&$variables) {
}