Hi all,

I have a page that when you open it, it will show the latest page of a certain content type (a newsletter edition). Underneath that page there will come a slide to navigate to the other nodes of that content type. I thought i would make a 'start' page in views to always show the latest node of that type (show the latest newsletter node). The problem that I have is that the Node does not render as I hoped it would. I want it to look like any other node... Now it shows the title of the view in h1.title instead of the title of the node. I just want to show the latest node instead of a view with a node in it.

Any suggestions?
Thanks in advance,
Danny

Comments

danny_joris’s picture

Found it.

It's in node.tpl.php:

<?php if (!$page): ?>
    <h2 class="title">
      <a href="<?php print $node_url; ?>" title="<?php print $title ?>"><?php print $title; ?></a>
    </h2>
<?php endif; ?>