index.html (view raw)
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 |
<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/1.10.20/css/jquery.dataTables.css">
<link rel="stylesheet" type="text/css" href="assets/css/table.css">
<!-- jQuery & Datatables -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.20/js/jquery.dataTables.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">
<div class="table-content">
<div class="row">
<div class="col-lg-12">
<div class="alert alert-bg-white alert-primary text-center">
<div class="icon"><i class="fa fa-info" aria-hidden="true" style="font-size: 2em; margin-left: 5px;"></i></div>
<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>
<h1>
<i class="fas fa-skull-crossbones text-danger"></i> Private Tracker List
</h1>
<table id="table" class="dataTable table-striped compact hover">
<thead>
<tr>
<th>Name</th>
<th>Abbr</th>
<th>Type</th>
<th>Codebase</th>
<th>Users</th>
<th>Torrents</th>
<th>Peers</th>
<th>Ratio</th>
<th>Ratio Diff</th>
<th>Points</th>
<th>B-Day</th>
<th>Join</th>
<th>Join Diff</th>
<th>Updated</th>
</tr>
</thead>
</table>
<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:hdinnovations@protonmail.com">hdinnovations@protonmail.com</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>
|