-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnews.php
45 lines (38 loc) · 1.07 KB
/
news.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
45
<?php
require 'lib/site.inc.php';
$view = new ProximityRacing\GeneralView();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php echo $view->presentHeader("News | Proximity Racing"); ?>
</head>
<body>
<?php echo $view->presentNavbar(); ?>
<header class="masthead headerimg">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<div class="post-heading">
<h1 style="color: white; font-size: 100px;">News</h1>
<br>
<br>
</div>
</div>
</div>
</div>
</header>
<?php if (isset($_SESSION['role'])) : ?>
<?php if ($_SESSION['role'] == 'ADMIN') : ?>
<button class="btn btn-primary"><a class="nolink" href="./write.php">Write</a></button>
<?php else : ?>
<?php endif; ?>
<?php else : ?>
<?php endif; ?>
<?php
include_once('./newsBlog.php');
?>
<?php echo $view->footer(); ?>
</body>
</html>