summaryrefslogtreecommitdiff
path: root/app/views/helpers/reader_view.phtml
blob: cdca393b9e9a007d69a6b873abda61786ba6143c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
$this->partial ('nav_menu');

if (isset ($this->entryPaginator) && !$this->entryPaginator->isEmpty ()) {
	$items = $this->entryPaginator->items ();
?>

<div id="stream" class="reader">
	<?php foreach ($items as $item) { ?>

	<div class="flux<?php echo !$item->isRead () ? ' not_read' : ''; ?><?php echo $item->isFavorite () ? ' favorite' : ''; ?>" id="flux_<?php echo $item->id (); ?>">
		<div class="flux_content">
			<div class="content">
				<?php $feed = $item->feed (true); ?>
				<a href="<?php echo $item->link (); ?>">
					<img class="favicon" src="<?php echo $feed->favicon (); ?>" alt="" /> <span><?php echo $feed->name (); ?></span>
				</a>
				<h1 class="title"><?php echo $item->title (); ?></h1>

				<div class="author">
					<?php $author = $item->author (); ?>
					<?php echo $author != '' ? Translate::t ('by_author', $author) . ' - ' : ''; ?>
					<?php echo $item->date (); ?>
				</div>

				<?php
					if($this->conf->lazyload() == 'yes') {
						echo lazyimg($item->content ());
					} else {
						echo $item->content();
					}
				?>
			</div>
		</div>
	</div>
	<?php } ?>
	
	<?php $this->entryPaginator->render ('pagination.phtml', 'next'); ?>
</div>

<?php } else { ?>
<div class="alert alert-warn">
	<span class="alert-head"><?php echo Translate::t ('no_feed_to_display'); ?></span>
</div>
<?php } ?>