</div>
        <?php 
print $help;
?>
					<h4><?php 
print $title;
?>
</h4>
					<em class="date"><?php 
print date('h:i T / M d', $node->created);
?>
</em>
                    
					<div class="txt">
    <?php 
if (mni_misc_functions_node_is_txttbl($node)) {
    print "<pre>" . str_replace("<br />", "", $node->body) . "</pre>";
} else {
    print $node->body;
}
?>
 
		
<?php 
if ($node->taxonomy) {
    ?>
<div class="meta">
<h2 class="nodesection">See Related Headlines:</h2>
<?php 
    $links = MNI_taxonomy_link($node);
    print theme('links', $links);
Example #2
0
    ?>
		<ul>
			<li><a href="<?php 
    print url('print/' . $nid);
    ?>
">Print</a></li>
			<li><a href="<?php 
    print url('printmail/' . $nid);
    ?>
">Email</a></li>
		</ul>
	</div>
	<em class="date"><?php 
    print $postdate;
    ?>
</em>
	<h3><?php 
    print $title;
    ?>
</h3>
    <?php 
    if (mni_misc_functions_node_is_txttbl(null, $taxonomy)) {
        print "<pre>" . str_replace("<br />", "", $body) . "</pre>";
    } else {
        print $body;
    }
    ?>
</div>

<?php 
}
Example #3
0
    print $node_url;
    ?>
" title="<?php 
    print $title;
    ?>
"><?php 
    print $title;
    ?>
</a></h2>
    <?php 
}
?>

	<div class="content">
    <?php 
if (mni_misc_functions_node_is_txttbl($node) && $node->type != 'alacarte_article') {
    print "<pre>" . str_replace("<br />", "", $content) . "</pre>";
} else {
    print $content;
}
?>
	</div>

	
<?php 
if (arg(0) != 'archive') {
    //a more generic test for non-page views of the node would be better, but right now i'm just trying to get the week module to display these in a decent way
    if ($taxonomy) {
        ?>
   <div class="meta">
   <h2 class="nodesection">See Related Headlines:</h2>