I am building a drupal theme from scratch and I encountered a problem - when trying to theme a node by content type <?php print render($content)
; ?> gives me nothing.
My template.php file:
<?php
function etalonestate_preprocess_page(&$vars) {
if (isset($vars['node']->type)) {
$vars['theme_hook_suggestions'][] = 'page__' . $vars['node']->type;
}
}
?>
Thanks in advance :)