20 lines
492 B
PHP
Raw Normal View History

2013-02-17 21:48:21 -05:00
<?php if (empty($item)): ?>
<p class="alert alert-info">Article not found.</p>
<?php else: ?>
<article class="item">
<h1>
2013-02-24 14:04:56 -05:00
<a href="<?= $item['url'] ?>" rel="noreferrer" target="_blank"><?= Helper\escape($item['title']) ?></a>
2013-02-17 21:48:21 -05:00
</h1>
<p class="infos">
2013-02-24 14:04:56 -05:00
<?= Helper\get_host_from_url($item['url']) ?> |
<?= date('l, j F Y H:i', $item['updated']) ?>
2013-02-17 21:48:21 -05:00
</p>
<?= $item['content'] ?>
</article>
<?php endif ?>