Skip to content

Commit

Permalink
Added navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
RexMortem committed Dec 20, 2024
1 parent 8daa50b commit b5da01b
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 1 deletion.
18 changes: 18 additions & 0 deletions Pages/Boids.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title> BOIDS </title>

<!-- CDNs -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
</head>

<body>

<!-- Page content -->
<p> This is the boids page </p>
</body>
</html>
Empty file added Stylesheets/Default.css
Empty file.
31 changes: 30 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,38 @@
<head>
<meta charset="UTF-8">
<title> Simulation Lab </title>

<!-- CDNs -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
</head>

<body>
Testing testing 123
<!-- Header (Nav Bar) -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="/SimulationLabs">Simulation Labs </a>
<ul class="navbar-nav">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownToggle" role="button" data-bs-toggle="dropdown"> Labs </a>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="/SimulationLabs/Pages/Boids">
Lab 1 - Boids
</a>
</li>
<li>
<a class="dropdown-item" href="/SimulationLabs/Pages/Boids">
Lab 2 - Noise
</a>
</li>
</ul>
</li>
</ul>
</div>
</nav>

<!-- Page content -->
<p> Testing testing 123 </p>
</body>
</html>

0 comments on commit b5da01b

Please sign in to comment.