Skip to content

Instantly share code, notes, and snippets.

@DejanBelic
Created February 25, 2017 07:04
Show Gist options
  • Save DejanBelic/9c3e154ae159216cd680e9bbb5e3e139 to your computer and use it in GitHub Desktop.
Save DejanBelic/9c3e154ae159216cd680e9bbb5e3e139 to your computer and use it in GitHub Desktop.
Attaching library to front page in drupal 8.
function my_theme_preprocess_page(&$variables) {
if ($variables['is_front']) {
$variables['#attached']['library'][] = 'my_theme/googleMap';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment