blob: fbb76c70b96742aee88a9caf3aee0c5b3e69c100 (
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
|
<?php
require("settings.php");
require("functions.php");
?>
<!DOCTYPE html>
<html>
<head>
<title><?php echo $blogTitle; ?></title>
<link rel="stylesheet" type="text/css" href="<?php echo $blogRoot; ?>styles.css" />
</head>
<body>
<?php title(); ?>
<?php
$ls = explode("\n", `ls -1t {$blogPosts}/`);
foreach($ls as $file) {
if (preg_match('/^\./', $file)) continue;
if ($file === "") continue;
echo "<a id=\"$file\">";
echo "<div>\n";
echo "<a class=\"title\" href=\"{$blogRoot}post/" . urlencode($file) . "\">$file</a>\n";
$stat = stat("{$blogPosts}$file");
$date = date('d-m-Y H:i T', $stat['mtime']);
echo "<span class=\"date\">$date</span>\n";
echo "</div>\n</a>\n\n";
}
?>
</body>
</html>
|