Didn't we cover that before, in this thread?
http://forum.umbraco.org/xslt/how-to-list-lowest-levelTo find news articles below the current page you're visiting...
Code:
<xsl:for-each select="$currentPage/descendant::node [@nodeTypeAlias = 'News Article'
and string(data [@alias='umbracoNaviHide']) != '1' ]">
To find new articles anywhere in the site...
Code:
<xsl:for-each select="umbraco.library:GetXmlAll()/descendant-or-self::node [
@nodeTypeAlias = 'News Article'
and string(data [@alias='umbracoNaviHide']) != '1'
]">
For a more complete discussion, check out this thread...
http://forum.umbraco.org/20430cheers,
doug.
MVP 2007-2009 - Official Umbraco Trainer for North America -
Percipient Studios