You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php |
|
/** |
|
* Implements hook_theme_suggestions_page_alter(). |
|
*/ |
|
function lmmi_journal_theme_suggestions_page_alter(array &$suggestions, array $variables) { |
|
if ($node = \Drupal::routeMatch()->getParameter('node')) { |
|
$suggestions[] = 'page__' . $node->bundle(); |
|
} |
|
}
|
|
|