| 7 |
|
|
| 8 |
<?php if ($picture) print $picture ?> |
<?php if ($picture) print $picture ?> |
| 9 |
|
|
| 10 |
<?php if ($submitted or $has_terms): ?> |
<?php if ($submitted || !empty($terms)): ?> |
| 11 |
<div class="meta<?php if ($has_terms) : ?> with-taxonomy<?php endif; ?>"> |
<div class="meta<?php if (!empty($terms)) : ?> with-taxonomy<?php endif; ?>"> |
| 12 |
|
|
| 13 |
<?php if ($submitted): ?> |
<?php if ($submitted): ?> |
| 14 |
<div class="submitted"><?php print t('Posted !date by !name', array('!date' => format_date($node->created, 'custom', "F jS, Y"), '!name' => theme('username', $node))); ?></div> |
<div class="submitted"><?php print t('Posted !date by !name', array('!date' => format_date($node->created, 'custom', "F jS, Y"), '!name' => theme('username', $node))); ?></div> |
| 15 |
<?php endif; ?> |
<?php endif; ?> |
| 16 |
|
|
| 17 |
<?php if ($has_terms) : ?> |
<?php if (!empty($terms)) : ?> |
| 18 |
<div class="taxonomy"><?php print $terms ?></div> |
<div class="taxonomy"><?php print $terms ?></div> |
| 19 |
<?php endif; ?> |
<?php endif; ?> |
| 20 |
|
|