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 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 |
<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">
<!-- 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">Info <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="#">Placeholder</a></li>
<li><a href="#">Placeholder</a></li>
<li><a href="#">Placeholder</a></li>
<li class="divider"></li>
<li><a href="#">Placeholder</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="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>
<table id="table" class="dataTable table-striped compact hover" style="width: 100% !important;">
<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>
|