| <?php |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| ?> |
| |
| <div class="blocktable"> |
| <h2 id="articlesLast"><span><?php tpl::lang('Last articles') ?></span></h2> |
| <div class="box"> |
| <div class="inbox"> |
| <table cellspacing="0"> |
| <thead> |
| <tr> |
| <th class="tcl" scope="col"><?php tpl::lang('Title') ?></th> |
| <th class="tc2" scope="col"><?php tpl::lang('Category') ?></th> |
| <th class="tc3" scope="col"><?php tpl::lang('Date') ?></th> |
| <?php if (articles::articlesOpenComment()) : ?> |
| <th class="tcr" scope="col"><?php tpl::lang('Discuss') ?></th> |
| <?php endif; ?> |
| </tr> |
| </thead> |
| <tbody> |
| <?php |
| while ($article_list->fetch()) : ?> |
| <tr> |
| <td class="tcl"><a href="<?php articles::listUrl() ?>"><?php articles::listTitle() ?></a></td> |
| <td class="tc2"><?php articles::listCatName() ?></td> |
| <td class="tc3"><?php articles::listDate() ?></td> |
| <?php if (articles::articlesOpenComment()) : ?> |
| <td class="tcr"><?php articles::listNumComment() ?></td> |
| <?php endif; ?> |
| </tr> |
| <?php endwhile; ?> |
| </tbody> |
| </table> |
| |
| </div> |
| </div> |
| </div> |