forked from HDVinnie/Private-Trackers-Spreadsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (115 loc) · 6.62 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
116
117
118
119
120
121
122
<html lang="en"><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Private Trackers Spreadsheet</title>
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="assets/css/custom.css">
<!-- Datatables -->
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/dt/dt-1.10.20/fh-3.1.6/r-2.2.3/sl-1.3.1/datatables.min.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/table.css">
<style>
.fixedHeader-floating {
background-color: rgb(16, 16, 16) !important;
}
</style>
<!-- jQuery & Datatables -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://cdn.datatables.net/v/dt/dt-1.10.20/fh-3.1.6/r-2.2.3/sl-1.3.1/datatables.min.js"></script>
<script type="text/javascript" charset="UTF-8" src="assets/js/app.js"></script>
<!-- #FONT-AWESOME -->
<script src="https://kit.fontawesome.com/212aaa0caa.js" crossorigin="anonymous"></script>
<!-- #GOOGLE FONT -->
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,300,600,700,900" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:400,200,300,700" rel="stylesheet" type="text/css">
</head>
<!-- #BODY -->
<body>
<div id="wrapper">
<nav class="navbar navbar-inverse" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-2">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" style="padding: 10px 15px !important;" href="#">
<h2 style="margin: 0;"><i class="fas fa-skull-crossbones text-danger"></i> Private Tracker List</h2>
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-2">
<!--<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
</ul>-->
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Resources <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="https://opentrackers.org">Open Trackers</a></li>
<li><a href="http://torrentinvites.org">Torrent Invites</a></li>
<li><a href="https://torrentfreak.com">Torrent Freak</a></li>
<li><a href="https://trackerstatus.info">Tracker Statuses</a></li>
<li><a href="https://github.com/HDVinnie/Torrent-Tracker-Platforms">Tracker Platforms</a></li>
</ul>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<div class="table-content">
<div class="row">
<div class="col-lg-12">
<div class="well text-center">
<strong>Hey There!</strong> Like what you see? Feel free to contribute<a class="alert-link" href="https://github.com/HDVinnie/Private-Trackers-Spreadsheet"> HERE!</a>
</div>
<table id="table" class="dataTable table-hover compact hover" style="width: 100% !important;">
<thead>
<tr>
<th title="The sites name">Name</th>
<th title="The sites abbreviation">Abbr</th>
<th title="The sites type of content it specializes in Movies, TV, Music, General, ect.">Type</th>
<th title="The sites codebase it is running (Gazelle, UNIT3D, etc.)">Codebase</th>
<th title="The sites security grade from Mozilla Observatory">Moz Grade</th>
<th title="The amount of users said site has">Users</th>
<th title="The amount of torrents said site has">Torrents</th>
<th title="The amount of peers (seeders+leechers) said site has">Peers</th>
<th title="If said site has ratio rules">Ratio</th>
<th title="Difficulty to maintain said sites ratio rules">Ratio Diff</th>
<th title="If said site has freeleech options">Freeleech</th>
<th title="If said site has a points system (Points, BON, Lumens, etc.)">Points</th>
<th title="If said site has hit and run rules">H&R</th>
<th title="Date said site was born">B-Day</th>
<th title="How one can join said site">Join</th>
<th title="Difficulty to join said site">Join Diff</th>
<th title="Last time site statistics were updated on this spreadsheet">Updated</th>
</tr>
</thead>
</table>
<br>
<br>
<br>
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">Privacy Notice</h3>
</div>
<div class="panel-body">
If your site is listed here and you dont want it to be, please email <a href="mailto:[email protected]">[email protected]</a> instead of using the issue tracker.
</div>
</div>
</div>
</div>
</div>
</div>
<!-- #JS LINKS -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>-->
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="assets/js/bootstrap.js"></script>
</body>
</html>