Parent Directory
|
Revision Log
|
Revision Graph
Initial commit of igniter theme. This is a starting theme like zen or base but with a different target. Igniter are minimal CSS and XHTML for poeple whe would like a "clean" theme. For keep CSS file smal and reanding fast, comment are not present to big.
| 1 | <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?> clear-block"> |
| 2 | |
| 3 | <?php print $picture ?> |
| 4 | |
| 5 | <?php if ($page == 0): ?> |
| 6 | <h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2> |
| 7 | <?php endif; ?> |
| 8 | |
| 9 | <div class="meta"> |
| 10 | <?php if ($submitted): ?> |
| 11 | <span class="submitted"><?php print $submitted ?></span> |
| 12 | <?php endif; ?> |
| 13 | |
| 14 | <?php if ($terms): ?> |
| 15 | <span class="terms"><?php print $terms ?></span> |
| 16 | <?php endif;?> |
| 17 | </div> |
| 18 | |
| 19 | <div class="content"> |
| 20 | <?php print $content ?> |
| 21 | </div> |
| 22 | |
| 23 | <?php |
| 24 | if ($links) { |
| 25 | print $links; |
| 26 | } |
| 27 | ?> |
| 28 | |
| 29 | </div> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |