-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefault.html
More file actions
58 lines (56 loc) · 2.43 KB
/
default.html
File metadata and controls
58 lines (56 loc) · 2.43 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Carleton CARCAS - Archaeological Research and 3D Scanning">
<title>Carleton CARCAS - Osteological Research</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-yaml/4.1.0/js-yaml.min.js"></script>
</head>
<body>
<div class="container">
<nav class="sidebar">
<div class="sidebar-inner">
<div class="sidebar-header" id="home-link">
<img src="carleton.png" alt="Carleton Logo" class="sidebar-logo">
<h1>CARCAS</h1>
</div>
<ul class="nav-menu">
<li class="dropdown">
<a href="#" id="animal-search-link" class="nav-link">
<i class="fas fa-paw"></i>
<span>Animal</span>
<i class="fas fa-chevron-right dropdown-icon"></i>
</a>
<ul class="dropdown-menu" id="animal-dropdown">
<!-- Animals will be populated dynamically from API -->
</ul>
</li>
<li class="dropdown">
<a href="#" id="bone-search-link" class="nav-link">
<i class="fas fa-bone"></i>
<span>Bone</span>
<i class="fas fa-chevron-right dropdown-icon"></i>
</a>
<ul class="dropdown-menu" id="bone-dropdown">
<!-- Bones will be populated dynamically from API -->
</ul>
</li>
</ul>
</div>
</nav>
<main class="main-content">
<section id="content-area" class="content-transition">
<!-- Dynamic content loaded here -->
</section>
</main>
</div>
<script src="spreadapi.js"></script>
<script src="script.js"></script>
</body>
</html>