forked from ColinWaddell/CurrantPi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
75 lines (63 loc) · 1.73 KB
/
index.php
File metadata and controls
75 lines (63 loc) · 1.73 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
<?php
/**
* index.php.
*
* Currant Pi - Raspberry Pi Status
*
* @author Colin Waddell
* @license https://opensource.org/licenses/MIT The MIT License (MIT)
*
* @link https://github.com/ColinWaddell/CurrantPi
*/
/*
* Libraries and helper function
*/
include('lib/StringHelpers.php');
include('lib/CurrantModule.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Header -->
<?php include('content/header/HeaderView.php'); ?>
</head>
<body>
<div class="container">
<!-- Banner -->
<div class="header clearfix title-area">
<?php include('content/banner/BannerView.php'); ?>
</div>
<div class="row">
<!-- Hardware -->
<div class="col-lg-6 widget-padding">
<?php include('content/hardware/HardwareView.php'); ?>
</div>
<!-- Network -->
<div class="col-lg-6 widget-padding">
<?php include('content/network/NetworkView.php'); ?>
</div>
</div>
<div class="row">
<!-- Load Average -->
<div class="col-lg-6 widget-padding">
<?php include('content/load_average/LoadAverageView.php'); ?>
</div>
<div class="col-lg-6 widget-padding">
<!-- Memory -->
<?php include('content/memory/MemoryView.php'); ?>
</div>
</div>
<div class="row">
<!-- Storage -->
<div class="col-lg-12 widget-less-padding">
<?php include('content/storage/StorageView.php'); ?>
</div>
</div>
<hr />
<!-- Footer -->
<footer class="footer">
<?php include('content/footer/FooterView.php'); ?>
</footer>
</div> <!-- /container -->
</body>
</html>