renderHelper('index/normal/entry_header');
$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;
}
}
}
?>
entry->content()) : $this->entry->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');
?>