You are here

node-og.tpl.php in Organic groups 5.8

File

node-og.tpl.php
View source
<?php

//$Id$
?>
<div class="node<?php

if ($sticky) {
  print " sticky";
}
if (!$status) {
  print " node-unpublished";
}
?>">
  <?php

if ($page == 0) {
  ?><h2 class="title"><a href="<?php

  print $node_url;
  ?>"><?php

  print $title;
  ?></a></h2><?php

}
?>
  <span class="taxonomy"><?php

print $terms;
?></span>
  <div class="content"><?php

print $content;
?></div>
</div>