diff options
Diffstat (limited to 'index.php')
-rwxr-xr-x[-rw-r--r--] | index.php | 115 |
1 files changed, 60 insertions, 55 deletions
diff --git a/index.php b/index.php index ac2dd3e..3b3f21b 100644..100755 --- a/index.php +++ b/index.php @@ -1,55 +1,60 @@ -<?php -include_once './includes/model/Category.php'; -session_start(); -?> -<!DOCTYPE html> -<html lang="en"> - <head> - <title>cflip.net forum</title> - <link rel="stylesheet" href="styles/style.css"> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - </head> - <body> -<?php include_once 'includes/templates/header.php'; ?> - <h2>Welcome to the cflip.net forum!</h2> - <p> - This is the beta test of the forum website, so there are lots of features missing. Since there are no moderation - features built into the website, - <i>for the most part</i> I don't care that much about what is posted here. Some links and buttons may not have any - functionality either! - </p> - <p> - If you notice a problem or have an idea for a feature that is missing, <a - href="http://51.195.90.7/forum/thread.php?id=40">reply to this thread!</a> - </p> - <h2>Categories</h2> - <table> - <tr> - <th>Category</th> - <th>Threads</th> - <th>Posts</th> - <th>Latest Thread</th> - </tr> -<?php foreach (Category::get_all_categories() as $category): ?> - <tr> - <td> - <b><a href="viewcategory.php?id=<?= $category->id ?>"><?= $category->name ?></a></b> - <br><small><?= $category->description ?></small> - </td> - <td><?= $category->thread_count ?></td> - <td><?= $category->post_count ?></td> -<?php $latest_thread = $category->get_latest_thread(); if ($latest_thread->has_value()): ?> - <td> - <b><a href="viewthread.php?id=<?= $latest_thread->id ?>"><?= $latest_thread->subject ?></a></b> - <br> - <small>by <b><a href="viewuser.php?id=<?= $latest_thread->author->id ?>"><?= $latest_thread->author->name ?></a></b>, <?= $latest_thread->date_created ?></small> - </td> -<?php else: ?> - <td>No threads yet!</td> -<?php endif ?> - </tr> -<?php endforeach ?> - </table> - </body> -</html> +<?php include_once './includes/model/Category.php'; ?>
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <title>cflip.net forum</title>
+<?php include_once 'includes/templates/head.php'; ?>
+ </head>
+ <body>
+<?php include_once 'includes/templates/header.php'; ?>
+ <h2>Categories</h2>
+ <table>
+ <tr>
+ <th>Category</th>
+ <th>Latest Thread</th>
+ </tr>
+<?php foreach (Category::get_all_categories() as $category): ?>
+ <tr>
+ <td>
+ <a style="font-size: larger;" href="viewcategory.php?id=<?= $category->id ?>"><?= $category->name ?></a></h4>
+ <br><?= $category->description ?>
+ </td>
+<?php $latest_thread = $category->get_latest_thread(); if ($latest_thread->has_value()): ?>
+ <td>
+ <b><a href="viewthread.php?id=<?= $latest_thread->id ?>"><?= $latest_thread->subject ?></a></b>
+ <br>
+ <small>by <b><a href="viewuser.php?id=<?= $latest_thread->author->id ?>"><?= $latest_thread->author->name ?></a></b>, <?= $latest_thread->date_created ?></small>
+ </td>
+<?php else: ?>
+ <td>No threads yet!</td>
+<?php endif ?>
+ </tr>
+<?php endforeach ?>
+ </table>
+ <h2>Latest Threads</h2>
+ <table>
+ <tr>
+ <th>Thread</th>
+ <th>Category</th>
+ <th>Latest Post</th>
+ </tr>
+<?php foreach (Thread::get_latest() as $thread): ?>
+ <tr>
+ <td>
+ <b><a href="viewthread.php?id=<?= $thread->id ?>"><?= $thread->subject ?></a></b>
+ <small>on <?= date('M d, Y', strtotime($thread->date_created)); ?></small>
+ </td>
+ <td><a href="viewcategory.php?id=<?= $thread->category->id ?>"><?= $thread->category->name ?></a></td>
+<?php $latest_post = $thread->get_latest_post(); if ($latest_post->has_value()): ?>
+ <td>
+ <small>by <b><a href="viewuser.php?id=<?= $latest_post->author->id ?>"><?= $latest_post->author->name ?></a></b>
+ on <?= $latest_post->date_created ?></small>
+ </td>
+<?php else: ?>
+ <td>No posts yet!</td>
+<?php endif ?>
+ </tr>
+<?php endforeach ?>
+ </table>
+ </body>
+</html>
|