-
Notifications
You must be signed in to change notification settings - Fork 20
/
maintanence.html
114 lines (106 loc) · 2.83 KB
/
maintanence.html
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Maintenance</title>
<link href='https://fonts.googleapis.com/css?family=Roboto+Mono' rel='stylesheet' type='text/css'>
</head>
<body>
<style>
body {
background-color: black;
color: white;
padding: 10px;
font-family: 'Roboto Mono', sans-serif;
font-size: 12px;
}
p {
margin: 0;
}
p > p {
display: inline;
}
p.command:before {
content: 'root@server:~$ ';
}
table {
width: 420px;
}
.typed-cursor{
display: inline-block;
opacity: 1;
-webkit-animation: blink 0.7s infinite;
-moz-animation: blink 0.7s infinite;
animation: blink 0.7s infinite;
}
@keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-webkit-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-moz-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
</style>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/1.1.1/typed.min.js"></script>
<script>
$(function(){
$(".typed").typed({
strings: ["<p class='command'>maintenance</p> <p>-bash: maintenance: command not found</p> <p class='command'>wel.. ^1000 this is awkward..<span class='typed-cursor'>_</span></p>"],
typeSpeed: 0,
loop: false,
showCursor: false,
callback: function() {
// setTimeout( function() {
// $('.console').remove()
// }, 2000)
}
});
});
</script>
<div class="console">
Welcome to Ubuntu 14.04.3 LTS (GNU/Linux 3.13.0-74-generic x86_64) <br />
<br />
* Documentation: https://help.ubuntu.com/ <br /> <br />
System information as of Sat Jan 16 13:48:22 CET 2016 <br /><br />
<table>
<tr>
<td>System load:</td>
<td>0.0</td>
<td>Processes:</td>
<td>80</td>
</tr>
<tr>
<td>Usage of /:</td>
<td>3.1% of 48.11GB</td>
<td>Users logged in:</td>
<td>1</td>
</tr>
<tr>
<td>Memory usage: </td>
<td>17%</td>
<td>IP address for eth0:</td>
<td></td>
</tr>
<tr>
<td>Swap usage:</td>
<td>0%</td>
</tr>
</table>
Graph this data and manage this system at:
https://landscape.canonical.com/ <br /><br />
8 packages can be updated. <br />
0 updates are security updates. <br /> <br />
root@server:~$
<div class="typed"></div>
</div>
</body>
</html>