Since you want to use the "standard template for node", I suggest you download node and then use node_view .
I personally think that this is a great practice, and I constantly use it on all my sites. This saves my theme inside drupal theme files by default node (node -node_type.tpl.php)
Example:
$nid = 123; $node = node_load($nid); $node_tpl_output = node_view($node); print $node_tpl_output;
* (note that node_view 2nd param is logical for using the teaser, which gives you even more control allowing you to use node -node_type-teaser.tpl.php) *
If you , you want to display the contents of node for development purposes, there is no doubt that you should use " Devel", which will allow you to use the following for any array, object, var, etc .:
dpm($node);
this function represents all of your node information and makes it navigate with the help of the Krumo library, which allows you to debug crazy objects such as $ views (which is not possible via print_r)
electblake
source share