Actions

Source Code of This Project

/apps/frontend/modules/news/templates/_item.php

<div class="box">
    <a name="<?php echo $news->getTitle() ?>"></a>
    <h3><a href="<?php echo $news->getLink() ?>" target="_blank"><?php echo $news->getTitle() ?></a></h3>
    <h4><strong><?php echo $news->getDate() ?></strong> | <a href="<?php echo $news->getNewsProviders()->getLink() ?>" target="_blank"><?php echo $news->getNewsProviders()->getName() ?></a></h4>
    <p class="bottom">
        <?php echo truncate_text($news->getDescription(), 400, '...', true) ?>
        <a href="<?php echo $news->getLink() ?>" target="_blank">read full</a>
    </p>
</div>