Rev 445 | Rev 476 | 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> |
||
17 | <p>Tim32 is a 10 year-old laptop running Ubuntu Server Edition 10.04.</p> |
||
18 | <br /> |
||
19 | |||
393 | tom | 20 | <h3 title="Take the Tim32 challenge: http://tim32.org/challenge/">Latest Blog Posts</h3> |
427 | tom | 21 | <p><a href="blog/rss.php">Rss Feed</a></p> |
169 | tom | 22 | |
23 | <?php |
||
24 | |||
25 | $ids = $page->findIDs('BlogPosts', 'WHERE ParentID = -1 ORDER BY DatePosted DESC'); |
||
417 | tom | 26 | for ($i = 0; $i < 4 && $i < count($ids); $i++) |
169 | tom | 27 | { |
28 | $id = $ids[$i]; |
||
29 | $post = $page->getBlogPost($id); |
||
30 | |||
187 | tom | 31 | write('<h4><a href="blog/post.php?id=' . $post->ID . '">' . $post->title. '</a></h4>'); |
169 | tom | 32 | write('<h5 style="color: #666666;">Posted On ' . date('l j F Y', $post->datePosted) . ' by ' . $post->user->name . ' (' . $post->user->username . ')</h5>'); |
175 | tom | 33 | write('<p>' . $page->replaceBBCode($post->content) . '</p>'); |
169 | tom | 34 | write('<br />'); |
35 | } |
||
36 | |||
37 | $page->drawFooter(); |
||
38 | |||
39 | ?> |