summaryrefslogtreecommitdiff
path: root/core/views/admin_block_news.html.php
blob: e75a40b4b037fd218fdb81b1de0dc90777b25cae (plain)
1
2
3
4
5
6
7
8
9
10
11
<? defined("SYSPATH") or die("No direct script access."); ?>
<ul>
  <? foreach ($feed as $entry): ?>
  <li>
    <a href="<?= $entry["link"] ?>"><?= $entry["title"] ?></a>
    <p>
      <?= text::limit_words(strip_tags($entry["description"]), 25); ?>
    </p>
  </li>
  <? endforeach ?>
</ul>