First off let me say "thank you, thank you" for your coverage of Drupal. It was very timely and necessary in my case.
I'm using Drupal 5.1, CCK & Contemplate. I find it to be a powerful combination. I've created a content type, and styled the body (full-view) of the node, but I am having problems with the teaser. Mainly, I can't create a title that links to the body (full-view) of the node. I'm using this code in contemplate:
<?php if ($page == 0) { ?><h2 class="title"><a href="<?php print $node_url?>"><?php print $title?></a></h2><?php }; ?>
Unfortunately, $node_url?doesn't return any values. So it links to nowhere. It's weird because I copied that line directly out of the node.tpl.php file. And that same line from the node.tpl.php returns the value "/node/some node #" What's the deal?
Thanks for any help you or your listeners could offer.
Phil