drupal_theme__fg_lemontwist/node.tpl.php
root 77eb1b688f Node theme: i18n, layout
- new clear-block class on whole-node <div>
- margin/padding applied to "submitted info
- taxonomy wrapper not translatable
2010-06-02 17:33:55 +02:00

11 lines
682 B
PHP

<div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?> clear-block">
<?php if ($picture) { print $picture; }?>
<?php if ($page == 0) { ?><h2 class="title"><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h2><?php }; ?>
<div class="node2">
<?php if ($submitted) { ?><span class="submitted"><?php print $submitted?></span><?php } ?>
<div class="taxonomy"><?php if ($terms) {print $terms_wrapped; }?></div>
</div>
<span class="clear"></span>
<div class="content"><?php print $content?></div>
<?php if ($links) { ?><div class="links-node"><?php print $links?></div><?php }; ?>
</div>