|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
|
|
<title>Jobs Fetcher</title>
|
|
|
|
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootswatch@5.3.3/dist/vapor/bootstrap.min.css" rel="stylesheet">
|
|
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<nav class="navbar navbar-expand-lg bg-primary" data-bs-theme="dark">
|
|
|
|
<div class="container-fluid">
|
|
|
|
|
|
|
|
<a class="navbar-brand" href="#">Lenape Jobs Fetcher</a>
|
|
|
|
|
|
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarColor01" aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation">
|
|
|
|
<span class="navbar-toggler-icon"></span>
|
|
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse" id="navbarColor01">
|
|
|
|
<ul class="navbar-nav me-auto">
|
|
|
|
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<p></p>
|
|
|
|
|
|
|
|
<div cldass="container mt-12">
|
|
|
|
|
|
|
|
|
|
|
|
<h1>Jobs Aggregator</h1>
|
|
|
|
|
|
|
|
<p></p>
|
|
|
|
<p></p>
|
|
|
|
<button class="btn btn-lg btn-primary" type="button" onclick="load()">Refresh Jobs </button>
|
|
|
|
|
|
|
|
<table id="leaderboard" class="table table-striped table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th></th>
|
|
|
|
<th>source site</th>
|
|
|
|
<th>Company</th>
|
|
|
|
<th>Position</th>
|
|
|
|
<th>Location</th>
|
|
|
|
<th>job type</th>
|
|
|
|
<th>is remote</th>
|
|
|
|
<th>description</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
|
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
|
|
|
|
|
|
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
|
|
|
|
|
|
|
<script src="https://code.jquery.com/jquery-2.1.3.js"></script>
|
|
|
|
|
|
|
|
<script src="js/jobs.js"></script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|