hi

what $variable in the page.tpl or node.tpl is the "free tags" ???

this is part opf my node.tpl:

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

is it the terms?
because my free tags don't show up ...

http://www.breakline.be/node/30

there should be a free tag in it ...

this is my page.tpl:

<table border="0" cellpadding="0" cellspacing="0" id="content">
  <tr>
    <?php if ($sidebar_left) { ?><td id="sidebar-left">
      <?php print $sidebar_left ?>
    </td><?php } ?>
    <td valign="top">
      <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
      <div id="main">
        <?php print $breadcrumb ?>
        <h1 class="title"><?php print $title ?></h1>
        <div class="tabs"><?php print $tabs ?></div>
        <?php print $help ?>
        <?php print $messages ?>
        <?php print $content; ?>
        <?php print $feed_icons; ?>
      </div>
    </td>
    <?php if ($sidebar_right) { ?><td id="sidebar-right">
      <?php print $sidebar_right ?>
    </td><?php } ?>
  </tr>
</table>

thanks

Comments

drgonzo121’s picture

this is the node.tpl srry:


<?php
	$day = format_date($node->created, 'custom', 'd');
	$month = format_date($node->created, 'custom', 'M');
?>

<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>
	<div class="date">
		<span class="month"><?php print $month ?></span>
		<span class="day"><?php print $day ?></span>
	</div>
		
	<?php } else { ?>
    	<?php print $picture ?>
	<?php }; ?>

	
	<div class="content">
		<?php print $content ?>
	</div>
	
	<?php if ($submitted) { ?>
		<span class="submitted">
			by <?php print theme('username', $node);?>
		</span>
	<?php } ?>
	<div class="clear"></div>

	<?php if ($links) { ?>
		<div class="info">
			<?php print $links ?>
		</div>
    <?php }; ?>
	
</div>

drgonzo121’s picture

solved, thanks anyway