2009-02-02 03:09:17 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
|
|
|
<html>
|
2009-03-04 06:25:55 +00:00
|
|
|
<head>
|
2009-05-31 00:11:48 -07:00
|
|
|
<title><?= p::clean($subject) ?> </title>
|
2009-03-04 06:25:55 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2009-05-31 00:11:48 -07:00
|
|
|
<h2><?= p::clean($subject) ?></h2>
|
2009-03-04 06:25:55 +00:00
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><?= t("Title:") ?></td>
|
2009-05-31 00:11:48 -07:00
|
|
|
<td><?= p::clean($item->title) ?></td>
|
2009-03-04 06:25:55 +00:00
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><?= t("Url:") ?></td>
|
2009-05-31 00:11:48 -07:00
|
|
|
<td>
|
|
|
|
|
<a href="<?= $item->url(array(), true) ?>">
|
|
|
|
|
<?= $item->url(array(), true) ?>
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
2009-03-04 06:25:55 +00:00
|
|
|
</tr>
|
|
|
|
|
<? if ($item->description): ?>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><?= t("Description:") ?></td>
|
2009-05-31 00:11:48 -07:00
|
|
|
<td><?= p::clean($item->description) ?></td>
|
2009-03-04 06:25:55 +00:00
|
|
|
</tr>
|
|
|
|
|
<? endif ?>
|
|
|
|
|
</table>
|
|
|
|
|
</body>
|
2009-02-02 03:09:17 +00:00
|
|
|
</html>
|