1234567891011121314151617181920212223242526272829 |
- <!-- start article.node -->
- <article class="<?php print $classes; ?>">
- <?php if ($page == 0 && $title !== ""): ?>
- <a href="<?php print $node_url?>"><h1 class="nodetitle"><?php print $title?></h1></a>
- <?php endif; ?>
- <section class="content">
- <?php
- hide($content['comments']);
- hide($content['links']);
- print render($content);
- ?>
- </section>
- <?php //if ($submitted): ?>
- <!-- <aside class="submitted"> -->
- <?php //print $submitted?>
- <!-- </aside> -->
- <?php //endif; ?>
- <?php if ($links = render($content['links'])): ?>
- <nav class="nav">
- <?php print $links; ?>
- </nav>
- <?php endif; ?>
- </article>
- <!-- end article.node -->
|