40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
<?php
 | 
						|
// $Id$
 | 
						|
?>
 | 
						|
<div id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>
 | 
						|
 | 
						|
  <?php print $user_picture; ?>
 | 
						|
 | 
						|
  <?php if (!$page): ?>
 | 
						|
    <h2<?php print $title_attributes; ?>><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h2>
 | 
						|
  <?php endif; ?>
 | 
						|
 | 
						|
  <?php if ($display_submitted): ?>
 | 
						|
    <span class="submitted"><?php print $date; ?> — <?php print $name; ?></span>
 | 
						|
  <?php endif; ?>
 | 
						|
 | 
						|
  <div class="content clearfix">
 | 
						|
    <?php
 | 
						|
      // We hide the comments and links now so that we can render them later.
 | 
						|
      hide($content['comments']);
 | 
						|
      hide($content['links']);
 | 
						|
      print render($content);
 | 
						|
    ?>
 | 
						|
  </div>
 | 
						|
 | 
						|
  <div class="clearfix">
 | 
						|
    <?php if (!empty($content['links']['terms'])): ?>
 | 
						|
      <div class="meta">
 | 
						|
        <div class="terms"><?php print render($content['links']['terms']); ?></div>
 | 
						|
      </div>
 | 
						|
    <?php endif; ?>
 | 
						|
 | 
						|
    <?php if (!empty($content['links'])): ?>
 | 
						|
      <div class="links"><?php print render($content['links']); ?></div>
 | 
						|
    <?php endif; ?>
 | 
						|
 | 
						|
    <?php print render($content['comments']); ?>
 | 
						|
  </div>
 | 
						|
 | 
						|
</div>
 |