partial('aside_feed'); $this->partial('nav_menu'); if (!empty($this->entries)) { $display_today = true; $display_yesterday = true; $display_others = true; $hidePosts = !FreshRSS_Context::$user_conf->display_posts; $lazyload = FreshRSS_Context::$user_conf->lazyload; $content_width = FreshRSS_Context::$user_conf->content_width; $today = @strtotime('today'); ?>
entries as $item) { $this->entry = Minz_ExtensionManager::callHook('entry_before_display', $item); if (is_null($this->entry)) { continue; } // We most likely already have the feed object in cache $this->feed = FreshRSS_CategoryDAO::findFeed($this->categories, $this->entry->feed()); if ($this->feed == null) { $this->feed = $this->entry->feed(true); if ($this->feed == null) { $this->feed = FreshRSS_Feed::example(); } } if ($display_today && $this->entry->isDay(FreshRSS_Days::TODAY, $today)) { ?>
entry->isDay(FreshRSS_Days::YESTERDAY, $today)) { ?>
entry->isDay(FreshRSS_Days::BEFORE_YESTERDAY, $today)) { ?>
renderHelper('index/normal/entry_header'); ?>

entry->title(); ?>

entry->author(); echo $author != '' ? '
' . _t('gen.short.by_author', $author) . '
' : '', $lazyload && $hidePosts ? lazyimg($this->entry->content()) : $this->entry->content(); ?>
renderHelper('index/normal/entry_bottom'); ?>
renderHelper('pagination'); ?>
partial('nav_entries'); ?>