-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathforum-lists.php
44 lines (38 loc) · 1011 Bytes
/
forum-lists.php
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
<?php $title = "Forums" ?>
<?php include "includes/components/header.php" ?>
<!-- Responsive navbar-->
<?php include "includes/components/navbar.php" ?>
<!-- Page Content-->
<section class="pt-4">
<div class="container px-lg-5">
<div class="row gx-lg-5">
<h1 style="text-align: center;">Browse the Forum</h1>
</div>
<br>
<br>
<br>
<br>
<br>
<!-- Page Features-->
<?php
if (isset($_GET["type"])) {
$type = $_GET["type"];
} else {
$type = "";
}
switch ($type) {
case "view-all": {
include "includes/components/view-all-forums.php";
break;
}
default: {
include "includes/components/default-forum-page.php";
break;
}
}
?>
</div>
</section>
<br>
<!-- Footer-->
<?php include "includes/components/footer.php" ?>