blob: f775971fc7431e5d8e0413d7f8ab179384a637e8 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
<?php
$pageTitle = $PlanetConfig->getName() . ' · ' . _g('All Headlines');
$count = 0;
$today = array();
$week = array();
$month = array();
$older = array();
$now = time();
foreach ($items as $item) {
$age = ($now - $item->get_date('U')) / (60*60*24);
if ($age < 1) {
$today[] = $item;
} elseif ($age < 7) {
$week[] = $item;
} elseif ($age < 30) {
$month[] = $item;
} else {
$older[] = $item;
}
}
header('Content-type: text/html; charset=UTF-8');
?><!DOCTYPE html>
<html lang="<?=$PlanetConfig->getLocale()?>" class="no-js">
<head>
<?php include(__DIR__.'/head.tpl.php'); ?>
</head>
<body>
<div id="page">
<?php include(__DIR__.'/top.tpl.php'); ?>
<main id="content">
<?php if (0 == count($items)) :?>
<article class="article">
<h2 class="article-title">
<?=_g('No article')?>
</h2>
<p class="article-content"><?=_g('No news, good news.')?></p>
</article>
<?php endif; ?>
<?php if (count($today)) : ?>
<article class="article">
<h2><?=_g('Today')?></h2>
<ul>
<?php foreach ($today as $item) : ?>
<?php $feed = $item->get_feed(); ?>
<li>
<a href="<?php echo $feed->getWebsite() ?>" class="source"><?php echo $feed->getName() ?></a> ·
<a href="<?php echo $item->get_permalink(); ?>" title="<?=_g('Go to original place')?>"><?php echo $item->get_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>
</article>
<?php endif; ?>
<?php if (count($week)) : ?>
<div class="article">
<h2><?=_g('This week')?></h2>
<ul>
<?php foreach ($week as $item) : ?>
<?php $feed = $item->get_feed(); ?>
<li>
<a href="<?php echo $feed->getWebsite() ?>" class="source"><?php echo $feed->getName() ?></a> ·
<a href="<?php echo $item->get_permalink(); ?>" title="<?=_g('Go to original place')?>"><?php echo $item->get_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>
<?php if (count($month)) : ?>
<div class="article">
<h2><?=_g('This month')?></h2>
<ul>
<?php foreach ($month as $item) : ?>
<?php $feed = $item->get_feed(); ?>
<li>
<a href="<?php echo $feed->getWebsite() ?>" class="source"><?php echo $feed->getName() ?></a> ·
<a href="<?php echo $item->get_permalink(); ?>" title="<?=_g('Go to original place')?>"><?php echo $item->get_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>
<?php if (count($older)) : ?>
<div class="article">
<h2><?=_g('Older items')?></h2>
<ul>
<?php foreach ($older as $item) : ?>
<?php $feed = $item->get_feed(); ?>
<li>
<a href="<?php echo $feed->getWebsite() ?>" class="source"><?php echo $feed->getName() ?></a> ·
<a href="<?php echo $item->get_permalink(); ?>" title="Go to original place"><?php echo $item->get_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>
</main>
<?php include_once(__DIR__.'/sidebar.tpl.php'); ?>
<?php include(__DIR__.'/footer.tpl.php'); ?>
</div>
</body>
</html>
|