-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstaff.html
More file actions
101 lines (95 loc) · 4.97 KB
/
staff.html
File metadata and controls
101 lines (95 loc) · 4.97 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lander University Food Program - Staff</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<link href="src/css/index-style.css" rel="stylesheet">
<link href="src/css/otherPages-style.css" rel="stylesheet">
<link href="./src/css/index-style.css" rel="stylesheet">
<link href="./src/css/otherPages-style.css" rel="stylesheet">
</head>
<body>
<header class="header" id="header">
<a href="#home" class="logo-container">
<div class="logo">
<img src="images/logos/LanderLogo.png" width="50" height="50">
<img src="./images/logos/LanderLogo.png" width="50" height="50">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#667eea;stop-opacity:1" />
<stop offset="100%" style="stop-color:#e4dd00e2;stop-opacity:1" />
</linearGradient>
</defs>
<rect x="10" y="25" width="15" height="50" fill="url(#grad1)" transform="rotate(-15 17.5 50)" />
<rect x="35" y="15" width="15" height="70" fill="url(#grad1)" />
<rect x="60" y="25" width="15" height="50" fill="url(#grad1)" transform="rotate(15 67.5 50)" />
<circle cx="50" cy="50" r="45" fill="none" stroke="url(#grad1)" stroke-width="2" opacity="0.5" />
</svg>
</div>
<div class="logo-text">Lander University Food Program - Staff</div>
</a>
<nav class="main-menu" id="mainMenu">
<a href="index.html#home" class="menu-item">Home</a>
<a href="index.html#about" class="menu-item">About</a>
<a href="index.html#contact" class="menu-item">Contact</a>
<a href="calendar.html" class="menu-item">Calendar</a>
<a href="staff.html" class="menu-item active">Staff</a>
<a href="./index.html#home" class="menu-item">Home</a>
<a href="./index.html#about" class="menu-item">About</a>
<a href="./index.html#contact" class="menu-item">Contact</a>
<a href="./calendar.html" class="menu-item">Calendar</a>
<a href="./staff.html" class="menu-item active">Staff</a>
<a href="https://github.com/RedInfinityPro/MockWebiste" target="_blank" rel="noopener noreferrer" class="menu-item external">GitHub</a>
</nav>
<div class="menu-toggle" id="menuToggle">
<span></span>
<span></span>
<span></span>
</div>
</header>
<section class="staff-section">
<div class="staff-list">
<div class="search-container">
<i class="fas fa-search search-icon"></i>
<input type="text" class="search-input" placeholder="Search..." id="staffSearch">
<div class="dropdown" style="margin-left: 10px;">
<button><i class="fas fa-filter"></i> Filter</button>
<div class="content" id="staffFilter">
<a href="#" data-sort="az-name"><i class="fas fa-sort-alpha-down"></i> A-Z Name</a>
<a href="#" data-sort="za-name"><i class="fas fa-sort-alpha-up"></i> Z-A Name</a>
<a href="#" data-sort="az-dept"><i class="fas fa-sort-alpha-down"></i> A-Z Department</a>
<a href="#" data-sort="za-dept"><i class="fas fa-sort-alpha-up"></i> Z-A Department</a>
</div>
</div>
<!-- staff items -->
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="footer-copyright">
© 2025 3D Coverflow. All rights reserved. | Designed by <a href="https://templatemo.com" target="_blank"
rel="noopener noreferrer">TemplateMo</a>
</div>
<div class="footer-links">
<a href="#privacy" onclick="event.preventDefault(); alert('Privacy Policy page would go here');">Privacy
Policy</a>
<a href="#terms" onclick="event.preventDefault(); alert('Terms of Service page would go here');">Terms
of Service</a>
</div>
</div>
</footer>
<!-- Scroll to top button -->
<div class="scroll-to-top" id="scrollToTop">
<span>↑</span>
</div>
<script src="src/js/index-script.js"></script>\
<script src="src/js/load-staff.js"></script>
<script src="./src/js/index-script.js"></script>\
<script src="./src/js/load-staff.js"></script>
</body>