-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.php
41 lines (34 loc) · 1.14 KB
/
index.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
<?php
define("PAGE", "Main");
define("CONTEXT", "main");
include("core.php");
start_session();
validate_session();
$current_page = 1;
if(isset($_GET["page"])){
$current_page = max(abs(floatval($_GET["page"])), 1);
}
include("head.php");
?>
<!DOCTYPE html>
<body>
<?php include("src/tooltip.php"); ?>
<script src="items/bukkit2icon.js"></script>
<script src="js/index.js"></script>
<?php include("nav.php"); ?>
<div class="container-fluid" style="height:100vh;">
<div class="col col-12">
<div class="inventory">
<div class="title">Latest Items</div>
<?php
fetch_main($current_page);
?>
<div class="page-slider mt-3">
<a href="?page=<?php echo max($current_page-1, 1); ?>"><i class="fas fa-arrow-left"></i></a>
<span class="minefont"><?php echo $current_page; ?></span>
<a href="?page=<?php echo $current_page+1; ?>"><i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
</body>
</html>