En god standard template.php

Giver mulighed for at style på content-type og på den enkelte node
WC3 validering: 
PHP
Kode (XHTML, PHP, CSS etc.): 

<?php
function TEMPLATENAVN_preprocess_page(&$variables) {
  if (
$variables['node']->type != "") {
   
$variables['template_files'][] = "page-node-" . $variables['node']->type;
  }
}
?>

<?php
function phptemplate_preprocess_node(&$vars) {
   
$vars['template_files'][] = 'node-' . $vars['nid'];
}
?>