forked from edit2/LowEndStorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·115 lines (99 loc) · 4.94 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>LowEndStorage.win | Storage on the Cheap</title>
<meta name="description" content="LowEndStorage.win - Storage on the Cheap" />
<!-- Open Graph data -->
<meta property="og:title" content="LowEndStorage.win | Storage on the Cheap" />
<meta property="og:url" content="https://www.lowendstorage.win/" />
<meta property="og:description" content="Low End Storage, Cheap Storage, Storage VMs" />
<meta property="og:site_name" content="LowEndStorage - Cheap Storage VMs" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/dt/jq-3.3.1/dt-1.10.18/fh-3.1.4/sl-1.2.6/datatables.min.css"/>
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Roboto:300,400,400i,700" rel="stylesheet">
<script type="text/javascript" src="https://cdn.datatables.net/v/dt/jq-3.3.1/dt-1.10.18/fh-3.1.4/sl-1.2.6/datatables.min.js"></script>
</head>
<body>
<h1 style="margin:0; text-align:center; color:white;"><span style="color:orange;">L</span>ow<span style="color:orange;">E</span>nd<span style="color:orange;">S</span>torage<span style="color:orange;">.win</span></h1>
<h2 style="margin:0; text-align:center; color:orange;">No aff links. No bullshit. Just storage.</h2>
<h5 style="margin:0 auto; text-align:center; color:white; width:75%;"><span style="color:orange;">Disclaimer:</span> Listing on this site does not imply endorsement of the provider. Don't be a dumbass -- do your research before opting to buy. Storage providers mentioned on this site have packages that start at 250GB+. The list is merely a sample of options that providers offer and is not meant to be exhaustive. If there are any errors or any edits/additions you'd like to see below, please submit an issue or a Pull Request on the <a href="https://github.com/edit2/LowEndStorage" target="_blank">GitHub project page</a>.</h5>
<div id="toggle-cols">
<p>Show/Hide Columns:</p>
<a class="toggle-vis noselect" data-column="0">Provider</a>
<a class="toggle-vis noselect" data-column="1">Location</a>
<a class="toggle-vis noselect" data-column="2">Space</a>
<a class="toggle-vis noselect" data-column="3">Bandwidth</a>
<a class="toggle-vis noselect" data-column="4">Port Speed</a>
<a class="toggle-vis noselect" data-column="5">CPUs</a>
<a class="toggle-vis noselect" data-column="6">RAM</a>
<a class="toggle-vis noselect" data-column="7">IPv4</a>
<a class="toggle-vis noselect" data-column="8">IPv6</a>
<a class="toggle-vis noselect" data-column="9">VZ Type</a>
<a class="toggle-vis noselect" data-column="10">Price</a>
<a class="toggle-vis noselect" data-column="11">Value</a>
<a class="toggle-vis noselect" data-column="12">Links</a>
<br><a class="toggle-all noselect">Show All</a>
</div>
<table id="storage-table" class="display compact cell-border">
<thead>
<th>Provider</th>
<th>Location</th>
<th>Space (GB)</th>
<th>B/W (TB/mo)</th>
<th>Port Speed (Gbps)</th>
<th>CPUs</th>
<th>RAM (GB)</th>
<th>IPv4</th>
<th>IPv6</th>
<th>Type</th>
<th>Price ($/mo)</th>
<th>$/TB/mo</th>
<th>Links</th>
</thead>
<tbody id="storage-body">
<!-------------------------------------- BEGIN TABLE ROWS -------------------------------------->
placeholder
<!-------------------------------------- END TABLE ROWS -------------------------------------->
</tbody>
</table>
<p id="copyright">The Yeti Protection Society © 2017 - deadpool</p>
<script>
$(document).ready(function() {
t = $('#storage-table').DataTable({
fixedHeader: true,
select: true,
paging: false
});
$('a.toggle-vis').on( 'click', function (e) {
e.preventDefault();
// Get the column API object
var column = t.column( $(this).attr('data-column') );
// Toggle the visibility
column.visible( ! column.visible() );
// Add class
if ( $(this).is(".inactive") ) {
$(this).removeClass("inactive");
} else {
$(this).addClass("inactive");
}
} );
$('a.toggle-all').on('click', function (e) {
e.preventDefault();
$('a.toggle-vis').each(function() {
// Get the column API objects
var column = t.column( $(this).attr('data-column') );
// Set visibility
if (!column.visible()){
column.visible(true);
}
// Remove inactive class
if ( $(this).is(".inactive") ) {
$(this).removeClass("inactive");
}
});
});
});
</script>
</body>
</html>