This repository has been archived by the owner on Dec 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.html
155 lines (155 loc) · 4.84 KB
/
test.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!doctype html>
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Strings - Test Page | Bitlancer</title>
<link id="style" rel="stylesheet" type="text/css" href="/strings/assets/css/app.css">
</head>
<body class="loading">
<header>
<div>
<a id="logo">Strings</a>
<ul class="action-menu" id="menu" data-width="140">
<li><img src="https://en.gravatar.com/userimage/42637352/47e00755b87293bcc8381d75bae7b366.jpeg"> Axel Sears</li>
<span>
<a href="/strings/interface-elements.html">Interface Elements</a>
<li>Settings</li>
<li>Sign Out</li>
</span>
</ul>
</div>
</header>
<nav>
<span id="dashboard" class="active">
<a href="/strings/index.html">Dashboard</a>
<span>
<a href="/strings/test.html">Test Page</a>
<a href="#">Lorem Ipsum</a>
<a href="#">Lorem Ipsum</a>
</span>
</span>
<span id="devices">
<a href="#">Devices</a>
<span>
<a href="#">Lorem Ipsum</a>
<a href="#">Lorem Ipsum</a>
<a href="#">Lorem Ipsum</a>
</span>
</span>
<span id="formations">
<a href="/strings/formations.html">Formations</a>
<span>
<a href="#">Lorem Ipsum</a>
<a href="#">Lorem Ipsum</a>
<a href="#">Lorem Ipsum</a>
</span>
</span>
<span id="user-management">
<a href="/strings/user-management.html">User Management</a>
</span>
</nav>
<!-- Content -->
<section>
<h1>Test Page</h1>
<div class="columns">
<div>
<h2>Server Details
<ul class="action-menu">
<li>Actions</li>
<span>
<!-- a href="javascript:strings.interface.messages('success','Success!','Lorem ipsum dolar amet')">Trigger Alert</a -->
<li>Edit</li>
<li>Create</li>
<a class="modal" data-src="#destroy" data-title="Please confirm">Destroy</a>
</span>
</ul>
</h2>
<div class="details">
<p><strong>Server Status</strong>Active</p>
<p><strong>System Image</strong>Ubuntu 12.10</p>
<p><strong>Size</strong>512 MB RAM, 20 GB Disk</p>
<p><strong>Region</strong>Dallas (DFW)</p>
<p><strong>Server Type</strong>Next Generation Server</p>
</div>
<h2>Blank Table</h2>
<table>
<thead>
<tr>
<th>Table Title</th>
</tr>
</thead>
<tbody>
<tr>
<td class="blank">
<h3>You are not monitoring this server</h3>Set up checks for greater visibility on uptime, performance, etc.
</td>
</tr>
</tbody>
</table>
<h2>Clean Table</h2>
<div>
</div>
<table class="clean">
<thead>
<tr>
<th>Column Title</th>
<th>Column Title</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lorem ipsum dolar sit amet</td>
<td>Lorem ipsum dolar</td>
</tr>
<tr>
<td>Do dolar di amet si</td>
<td>Lorem ipsum dolar</td>
</tr>
<tr>
<td>Do dolar di amet si</td>
<td>Lorem ipsum dolar</td>
</tr>
</tbody>
</table>
</div>
<div>
<h2>Sidebar title</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
<p class="info">This is an information block</p>
<a class="arrow">This is a hyperlink</a>
<h2>Sidebar title two</h2>
<p>Some filler text to explain things.</p>
<a class="cta" href="#">Link to action</a>
<h2>Sidebar list example</h2>
<ul>
<li>List item one</li>
<li>List item two</li>
<li>List item three</li>
</ul>
</div>
<hr class="clear">
</section>
<div style="display:none">
<div id="destroy">
<form>
<fieldset>
<legend>Enter your password</legend>
<input type="password" placeholder="password" />
</fieldset>
<div class="submit">
<a class="cta cancel disabled">Destroy</a>
<a class="cta">Cancel</a>
</div>
</form>
</div>
</div>
<!-- Javascript -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.4/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="/strings/assets/js/app.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</body>
</html>