partial('aside_feed'); $this->partial('nav_menu'); } call_user_func($this->callbackBeforeEntries, $this); $lazyload = FreshRSS_Context::$user_conf->lazyload; $content_width = FreshRSS_Context::$user_conf->content_width; $MAX_TAGS_DISPLAYED = FreshRSS_Context::$user_conf->show_tags_max; ?>

entries as $item): $lastEntry = $item; $nbEntries++; ob_flush(); /** @var FreshRSS_Entry */ $item = Minz_ExtensionManager::callHook('entry_before_display', $item); if ($item == null) { continue; } $this->entry = $item; $tags = null; $firstTags = array(); $remainingTags = array(); if (FreshRSS_Context::$user_conf->show_tags == 'h' || FreshRSS_Context::$user_conf->show_tags == 'f' || FreshRSS_Context::$user_conf->show_tags == 'b') { $tags = $this->entry->tags(); if (!empty($tags)) { if ($MAX_TAGS_DISPLAYED > 0) { $firstTags = array_slice($tags, 0, $MAX_TAGS_DISPLAYED); $remainingTags = array_slice($tags, $MAX_TAGS_DISPLAYED); } else { $firstTags = $tags; } } } ?>
categories, $item->feedId()); //We most likely already have the feed object in cache if ($feed == null) $feed = $item->feed(); $favoriteUrl = array('c' => 'entry', 'a' => 'bookmark', 'params' => array('id' => $item->id())); if ($item->isFavorite()) { $favoriteUrl['params']['is_favorite'] = 0; } $readUrl = array('c' => 'entry', 'a' => 'read', 'params' => array('id' => $item->id())); if ($item->isRead()) { $readUrl['params']['is_read'] = 0; } ?>
isRead() ? 'read' : 'unread') ?> isFavorite() ? 'starred' : 'non-starred') ?> show_feed_name === 't') { ?> show_favicons): ?> ✇name() ?>
show_tags === 'h' || FreshRSS_Context::$user_conf->show_tags === 'b') { ?>

title() ?>

show_author_date === 'h' || FreshRSS_Context::$user_conf->show_author_date === 'b') { ?>
show_feed_name === 'a') { ?>
authors(); if (is_array($authors)) { foreach ($authors as $author) { ?>
content() ?>
show_author_date === 'f' || FreshRSS_Context::$user_conf->show_author_date === 'b'; $display_tags = FreshRSS_Context::$user_conf->show_tags === 'f' || FreshRSS_Context::$user_conf->show_tags === 'b'; if ($display_authors_date || $display_tags) { ?>
0): call_user_func($this->callbackBeforePagination, $this, $nbEntries, $lastEntry); $this->renderHelper('stream-footer'); ?>