| <?php |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| ?> |
| |
| |
| <?php |
| if (!$article_list->isEmpty()) : ?> |
| |
| <h3 id="articlesTitle"><span><?php tpl::lang('On articles') ?></span></h3> |
| |
| <?php |
| while ($article_list->fetch()) : ?> |
| |
| <h4><span><a href="<?php articles::listUrl() ?>"><?php articles::listTitle() ?></a></span></h4> |
| <div class="articleContent"> |
| <?php tpl::truncate_html(articles::listContent(true), 300, |
| '<a href="'.articles::listUrl(true).'">'.tpl::lang('Read more',true).'</a>'); ?> |
| </div> |
| |
| <?php |
| endwhile; ?> |
| <br/> |
| <?php endif; ?> |