This repository has been archived by the owner on Feb 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
82 lines (76 loc) · 2.79 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
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
<?php
require 'header.php';
?>
<table class="contentbox"><tr>
<td valign="top" style="width:33%">
<table class="contenttable" cellpadding="0" cellspacing="0">
<tr><td bgcolor="#E7CC85" style="padding:4px; color:#6C5415; font-weight:bold;">About</td></tr>
<tr><td style="padding:4px;">Welcome to the HelioHost Dashboard. This website allows you to see all the latest information
at a glance, and access lots of useful areas of HelioHost quickly and efficiently.</td></tr>
</table>
<br>
<table class="contenttable links" cellpadding="0" cellspacing="0">
<tr><td bgcolor="#E7CC85" style="padding:4px; color:#6C5415; font-weight:bold;">Useful Links</td></tr>
<tr><td style="padding:4px;">
<div style="background-color:#F9F1DF; color:#6C5415; padding:4px;"><a href="http://www.heliohost.org/">HelioHost</a></div>
<div style="height:3px;"></div>
<div style="background-color:#F9F1DF; color:#6C5415; padding:4px;"><a href="http://www.helionet.org/">HelioNet</a></div>
<div style="height:3px;"></div>
<div style="background-color:#F9F1DF; color:#6C5415; padding:4px;"><a href="http://wiki.helionet.org/">Wiki</a></div>
<div style="height:3px;"></div>
<div style="background-color:#F9F1DF; color:#6C5415; padding:4px;"><a href="http://panel.helionet.org/">HelioPanel</a></div>
<div style="height:3px;"></div>
<div style="background-color:#F9F1DF; color:#6C5415; padding:4px;"><a href="http://stevie.heliohost.org:2082/">cPanel for Stevie</a></div>
<div style="height:3px;"></div>
<div style="background-color:#F9F1DF; color:#6C5415; padding:4px;"><a href="http://johnny.heliohost.org:2082/">cPanel for Johnny</a></div>
</td></tr>
</table>
</td>
<td valign="top" style="width:33%">
<table class="contenttable" cellpadding="0" cellspacing="0">
<tr><td bgcolor="#E7CC85" style="padding:4px; color:#6C5415; font-weight:bold;">Twitter @HelioHost</td></tr>
<tr><td style="padding:4px;">
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 30000,
width: 250,
height: 400,
theme: {
shell: {
background: '#333333',
color: '#ffffff'
},
tweets: {
background: '#000000',
color: '#ffffff',
links: '#4aed05'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setUser('HelioHost').start();
</script>
</td></tr>
</table>
</td>
<td valign="top" style="width:33%">
<table class="contenttable" cellpadding="0" cellspacing="0">
<tr><td bgcolor="#E7CC85" style="padding:4px; color:#6C5415; font-weight:bold;">Latest Posts</td></tr>
<tr><td><IFRAME src="latestposts.php" width="100%" height="400" scrolling="yes" frameborder="0"></IFRAME></td></tr>
</table>
</td>
</tr></table>
<?php
require 'footer.php';
?>