You are here

node-storylink.tpl.php in Vote Up/Down 5

Same filename in this branch
  1. 5 node-storylink.tpl.php
  2. 5 alternative/node-storylink.tpl.php
Same filename and directory in other branches
  1. 6 node-storylink.tpl.php

File

node-storylink.tpl.php
View source

<!-- start node -->
<div id="node-<?php

print $node->nid;
?>" class="node storylink clear-block<?php

print $sticky ? ' sticky' : '';
print !$status ? ' node-unpublished' : '';
?>">
<?php

print $picture;
?>
<h2 class="title"><a href="<?php

print $storylink_url;
?>"><?php

print $seqid ? $seqid . '. ' : '';
print $title;
?></a></h2>
<?php

print $vote_storylink_via;
print $vote_up_down_widget;
?>
<div class="content"><?php

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

print $submitted;
if ($terms) {
  ?>
<span class="terms"> | <?php

  print t('Tags');
  ?>: <?php

  print $terms;
  ?></span>
<?php

}
?>
</div>
<?php

if ($links) {
  ?>
<div class="links">&raquo; <?php

  print $links;
  ?></div>
<?php

}
?>
<br class="clear" />
</div>