<div class="node<?php print ($sticky) ? " sticky" : ""; ?>">
  <?php if ($page == 0): ?>
    <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
  <?php endif; ?>
  <?php print $picture ?>
  <div class="content">
  <?php print $content ?>
  <? if( $node->readmore == 1 ): ?>
  	<a href="<? print $node_url; ?>">Read more...</a>
  <? endif; ?>
  </div>
  <div class="metadata">
	  <div class="info"><?php print $submitted ?></div>
<div class="category">
Category: 
<? 
 $categories = taxonomy_node_get_terms_by_vocabulary( $node->nid, 7 );
 foreach( $categories as $key => $category ) {
	$category_url = drupal_get_path_alias( 'taxonomy/term/'.$category->tid );
	$link = l($category->name, $category_url);
	print $link." ";
 } ?>
</div>
<div class="tags">
Tags: 
<? 
 $tags = taxonomy_node_get_terms_by_vocabulary( $node->nid, 2 );
 foreach( $tags as $key => $tag ) {
	$tag_url = drupal_get_path_alias( 'taxonomy/term/'.$tag->tid );
	$link = l($tag->name, $tag_url);
	print $link." ";
 } ?>
<a href="/tags">(tag cloud)</a>
</div>
<div class="comment_link">
Comments:
<? if( $node->comment_count == 0 ) {
	print '<a href="/comment/reply/'.$node->nid.'#comment-form">Add New Comment</a>';
} else if( $node->comment_count == 1 ) {
	print '<a href="'.$node_url.'#comments">View the lonely, single comment</a>';
} else if( $node->comment_count > 1 ) {
	print '<a href="'.$node_url.'#comments">View all the wonderful comments</a>';
}?>
</div>
</div>
<br class="clear" />
</div>
