summaryrefslogtreecommitdiffstats
path: root/templates/part.items.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/part.items.php')
-rw-r--r--templates/part.items.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/templates/part.items.php b/templates/part.items.php
index c1619085e..c2b9b2889 100644
--- a/templates/part.items.php
+++ b/templates/part.items.php
@@ -6,18 +6,18 @@ $itemmapper = new OC_News_ItemMapper();
$items = $itemmapper->findAll($feedid);
-echo '<ul class="accordion">';
+echo '<ul>';
foreach($items as $item) {
- $title = $item->getTitle();
- echo '<li>';
- echo '<div data-id="' . $item->getId() . '"';
- if ($item->isRead()) {
- echo ' class="title_read">';
+ if($item->isRead()){
+ $readClass = "title_read";
+ } else {
+ $readClass = "title_unread";
}
- else {
- echo ' class="title_unread" onClick="News.Feed.markItem(' . $item->getId() . ',' . $feedid . ')">';
- }
- echo $title . '</div><div class="body">' . $item->getBody() . '</div>';
+
+ echo '<li class="news_item ' . $readClass .'" data-id="' . $item->getId() . '" data-feedid="' . $feedid . '">';
+ echo '<h1><a href="' . $item->getUrl() . '">' . $item->getTitle() . '</a></h1>';
+ echo '<div class="body">' . $item->getBody() . '</div>';
echo '</li>';
-}
+
+ }
echo '</ul>';