Por default Drupal no te va a reconocer page--nodetype debes agregarle un hook al theme
Código PHP:
Ver originalfunction THEME_preprocess_page(&$variables, $hook)
{
if (isset($variables['node'])) { $variables['theme_hook_suggestions'][] = 'page__' . $variables['node']->type;
}
}