-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
95 lines (82 loc) · 2.22 KB
/
index.php
File metadata and controls
95 lines (82 loc) · 2.22 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
/**
* index.php
*
*
* @originaauthor Colin Waddell
* @edittedby Ryan McGuinness
* @license https://opensource.org/licenses/MIT The MIT License (MIT)
* @link https://github.com/ColinWaddell/CurrantPi
*/
/*
* Libraries and helper function
*/
include ('lib/string_helpers.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Header -->
<?php include ('content/header.php'); ?>
</head>
<body>
<div class="container">
<!-- Banner -->
<div class="header clearfix title-area">
<?php include ('content/banner.php'); ?>
</div>
<div class="row">
<!-- Hardware -->
<div class="col-lg-6 widget-padding">
<?php include ('content/hardware.php'); ?>
</div>
<!-- Network -->
<div class="col-lg-6 widget-padding">
<?php include ('content/network.php'); ?>
</div>
</div>
<div class="row">
<!-- Load Average -->
<div class="col-lg-6 widget-padding">
<?php include ('content/load_average.php'); ?>
</div>
<div class="col-lg-6 widget-padding">
<!-- Memory -->
<?php include ('content/memory.php'); ?>
</div>
</div>
<div class="row">
<!-- Storage -->
<div class="col-lg-12 widget-less-padding">
<?php include ('content/storage.php'); ?>
</div>
</div>
<?php /*
<div class="row">
<!-- VPN Info -->
<div class="col-lg-12 widget-less-padding">
<?php include ('content/vpn.php'); ?>
</div> -->
</div>
*/ ?>
<?php /*
<div class="row">
<!-- Suspend on idle status -->
<div class="col-lg-12 widget-less-padding">
<?php include ('content/suspend.php'); ?>
</div>
</div>
*/ ?>
<div class="row">
<!-- Files in use -->
<div class="col-lg-12 widget-less-padding">
<?php include ('content/files_in_use.php'); ?>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<?php include ('content/footer.php'); ?>
</footer>
</div> <!-- /container -->
</body>
</html>