Subversion Repositories taios

Rev

Rev 477 | Rev 484 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
169 tom 1
<?php
2
 
3
require '_taios.php';
4
 
5
$page = new Taios_Page('Home');
6
$page->drawHeader();
7
write('<h3>Pages</h3>');
8
$page->drawMenuItem('Biggles', '/~biggles/');
457 tom 9
$page->drawMenuItem('FredFace', '/~freddie/');
169 tom 10
$page->drawMenuItem('Muzer', '/~muzer/');
457 tom 11
$page->drawMenuItem('TomMan', '/~tom/');
169 tom 12
$page->drawMiddle();
13
 
14
?>
15
 
16
<p class="bold">Welcome to Tim32!</p>
483 muzer 17
<?php
18
write('<p>Tim32 is a ' . (date("Y") - 2000) . '-year-old laptop running Ubuntu Server Edition 10.04.</p>');
19
?>
169 tom 20
<br />
21
 
393 tom 22
<h3 title="Take the Tim32 challenge: http://tim32.org/challenge/">Latest Blog Posts</h3>
427 tom 23
<p><a href="blog/rss.php">Rss Feed</a></p>
169 tom 24
 
25
<?php
26
 
483 muzer 27
$ids = $page->findIDs('BlogPosts', 'WHERE ParentID = -1 AND Category != "Drafts" ORDER BY DatePosted DESC');
417 tom 28
for ($i = 0; $i < 4 && $i < count($ids); $i++)
169 tom 29
{
30
    $id = $ids[$i];
31
    $post = $page->getBlogPost($id);
476 tom 32
 
33
    $comment_count = 0;
34
    $ids2 = $page->findIDs('BlogPosts', 'WHERE ParentID=' . $id);
35
 
36
    write('<a href="blog/post.php?id=' . $id . '"><h3>' . $post->title. '</h3></a>');
169 tom 37
    write('<h5 style="color: #666666;">Posted On ' . date('l j F Y', $post->datePosted) . ' by ' . $post->user->name . ' (' . $post->user->username . ')</h5>');
175 tom 38
    write('<p>' . $page->replaceBBCode($post->content) . '</p>');
477 tom 39
    write('<h5 style="color: #666666;">' . count($ids2) . ' Comments</h5>');
169 tom 40
    write('<br />');
41
}
42
 
43
$page->drawFooter();
44
 
45
?>