mirror of
https://github.com/BeamMP/BeamMP-Website.git
synced 2025-07-01 23:35:25 +00:00
89 lines
3.5 KiB
Plaintext
89 lines
3.5 KiB
Plaintext
<!DOCTYPE html>
|
|
<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, shrink-to-fit=no" />
|
|
<meta name="description" content="" />
|
|
<meta name="author" content="" />
|
|
<title>BeamNG-MP-Servers</title>
|
|
<link href="css/servers-styles.css" rel="stylesheet" />
|
|
<link href="https://cdn.datatables.net/1.10.20/css/dataTables.bootstrap4.min.css" rel="stylesheet" crossorigin="anonymous" />
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/js/all.min.js" crossorigin="anonymous"></script>
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-160071688-1"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'UA-160071688-1');
|
|
</script>
|
|
</head>
|
|
<body class="sb-nav-fixed">
|
|
<span id="TEMPAREA" style="display:none;"></span>
|
|
<nav class="sb-topnav navbar navbar-expand navbar-dark bg-dark">
|
|
<%- include('includes/nav.ejs') %>
|
|
</nav>
|
|
<div id="layoutSidenav_content">
|
|
<main>
|
|
<br>
|
|
<br>
|
|
<div class="container-fluid">
|
|
<h1 class="mt-4">Server List</h1>
|
|
<div class="card mb-4">
|
|
<div class="card-header"><i class="fas fa-server mr-1"></i>BeamNG-MP Server List</div>
|
|
<div class="card-body">
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
|
|
<thead>
|
|
<tr>
|
|
<th>Location</th>
|
|
<th>Server Name</th>
|
|
<th>Map</th>
|
|
<th>Ping</th>
|
|
<th>Online Since</th>
|
|
<th>Players</th>
|
|
</tr>
|
|
</thead>
|
|
<tfoot>
|
|
<tr>
|
|
<th>Location</th>
|
|
<th>Server Name</th>
|
|
<th>Map</th>
|
|
<th>Ping</th>
|
|
<th>Online Since</th>
|
|
<th>Players</th>
|
|
</tr>
|
|
</tfoot>
|
|
<tbody id="Servers-List">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer class="py-4 bg-light mt-auto">
|
|
<div class="container-fluid">
|
|
<div class="d-flex align-items-center justify-content-between small">
|
|
<div class="text-muted">Copyright © BeamNG-MP Development Team 2020</div>
|
|
<div>
|
|
<a href="#">Privacy Policy</a>
|
|
·
|
|
<a href="#">Terms & Conditions</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
<script src="https://code.jquery.com/jquery-3.4.1.min.js" crossorigin="anonymous"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
|
|
<script src="js/scripts.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.min.js" crossorigin="anonymous"></script>
|
|
<script src="https://cdn.datatables.net/1.10.20/js/jquery.dataTables.min.js" crossorigin="anonymous"></script>
|
|
<script src="https://cdn.datatables.net/1.10.20/js/dataTables.bootstrap4.min.js" crossorigin="anonymous"></script>
|
|
<script src="js/datatables-demo.js"></script>
|
|
</body>
|
|
</html>
|