Files
lenape-jobs-fetcher/web/index.html

67 lines
2.0 KiB
HTML
Raw Normal View History

2025-04-30 07:38:19 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-04-30 09:04:29 -04:00
<title>Jobs Fetcher</title>
2025-04-30 07:38:19 -04:00
2025-06-10 13:03:31 +00:00
<link href="https://cdn.jsdelivr.net/npm/bootswatch@5.3.3/dist/vapor/bootstrap.min.css" rel="stylesheet">
2025-04-30 07:38:19 -04:00
</head>
<body>
2025-06-10 13:03:31 +00:00
<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>
2025-04-30 07:38:19 -04:00
2025-06-10 13:03:31 +00:00
<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>
2025-04-30 07:38:19 -04:00
2025-06-10 13:03:31 +00:00
<div class="collapse navbar-collapse" id="navbarColor01">
<ul class="navbar-nav me-auto"></ul>
</div>
2025-04-30 07:38:19 -04:00
</div>
2025-06-10 13:03:31 +00:00
</nav>
2025-04-30 07:38:19 -04:00
2025-06-10 13:03:31 +00:00
<div class="container mt-4">
<p class="lead">
This tool scrapes multiple job boards using Python based on a search query you provide, aggregating the results into one table for easy browsing.
</p>
</div>
2025-04-30 07:38:19 -04:00
2025-06-10 13:03:31 +00:00
<div class="container mt-5">
2025-04-30 09:04:29 -04:00
<h1>Jobs Aggregator</h1>
2025-06-10 13:03:31 +00:00
<p></p>
<button class="btn btn-lg btn-primary" type="button" onclick="load()">Refresh Jobs</button>
2025-04-30 09:04:29 -04:00
2025-06-10 13:03:31 +00:00
<table id="leaderboard" class="table table-striped table-hover mt-4">
2025-04-30 07:38:19 -04:00
<thead>
<tr>
<th></th>
2025-06-10 13:03:31 +00:00
<th>Source Site</th>
2025-04-30 07:38:19 -04:00
<th>Company</th>
<th>Position</th>
<th>Location</th>
2025-06-10 13:03:31 +00:00
<th>Job Type</th>
<th>Is Remote</th>
<th>Description</th>
2025-04-30 07:38:19 -04:00
</tr>
</thead>
2025-06-10 13:03:31 +00:00
<tbody></tbody>
2025-04-30 07:38:19 -04:00
</table>
</div>
2025-06-10 13:03:31 +00:00
<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>
2025-04-30 07:38:19 -04:00
</body>
</html>