| Commit | Line | Data |
|---|---|---|
| 4aa359bc | 1 | <div class="node <?php print $node_classes ?>" id="node-<?php print $node->nid; ?>"><div class="node-inner"> |
| 50be6ac5 | 2 | |
| 0c91c6b4 JR |
3 | <?php if ($page == 0): ?> |
| 4 | <h2 class="title"> | |
| 2f046e72 | 5 | <a href="<?php print $node_url; ?>"><?php print $title; ?></a> |
| 0c91c6b4 JR |
6 | </h2> |
| 7 | <?php endif; ?> | |
| 8 | ||
| 2f046e72 J |
9 | <?php if ($picture) print $picture; ?> |
| 10 | ||
| 0c91c6b4 | 11 | <?php if ($submitted): ?> |
| cc25c1e9 | 12 | <div class="submitted"> |
| 50be6ac5 | 13 | <?php print $submitted; ?> |
| 2f046e72 | 14 | </div> |
| 0c91c6b4 | 15 | <?php endif; ?> |
| 2c7c0b08 | 16 | |
| 543b5ada | 17 | <?php if (count($taxonomy)): ?> |
| 50be6ac5 | 18 | <div class="taxonomy"><?php print t(' in ') . $terms; ?></div> |
| 2c7c0b08 | 19 | <?php endif; ?> |
| 2f046e72 | 20 | |
| 0c91c6b4 | 21 | <div class="content"> |
| 75f9b580 | 22 | <?php print $content; ?> |
| 0c91c6b4 | 23 | </div> |
| 2f046e72 | 24 | |
| 0c91c6b4 JR |
25 | <?php if ($links): ?> |
| 26 | <div class="links"> | |
| 75f9b580 | 27 | <?php print $links; ?> |
| 0c91c6b4 JR |
28 | </div> |
| 29 | <?php endif; ?> | |
| 2f046e72 | 30 | |
| 4aa359bc | 31 | </div></div> <!-- /node-inner, /node --> |