-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathofficers.php
107 lines (104 loc) · 5 KB
/
officers.php
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
102
103
104
105
106
107
<!DOCTYPE HTML>
<!--LTVFD Website-->
<!--Main Page-->
<html lang="en" class="no-js" style="overflow: scroll;">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="resources/stylesheet.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/uikit.min.css" />
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300&display=swap" rel="stylesheet">
<title>LTFD | Officers</title>
</head>
<body>
<header>
<div class="uk-position-top">
<nav class="uk-navbar-container uk-navbar-transparent" uk-navbar>
<div class="uk-navbar-center">
<div class="uk-navbar-center-left">
<ul class="uk-navbar-nav">
<li><a href="index">Home</a></li>
<li>
<a class="uk-active" href="#">About Us</a>
<div class="uk-navbar-dropdown">
<ul class="uk-nav uk-navbar-dropdown-nav">
<li><a class="uk-active" href="officers">Officers</a></li>
<li><a href="apparatus">Apparatus</a></li>
<li><a href="history">History</a></li>
<li><a href="education">Education</a></li>
</ul>
</div>
</li>
<li>
<a href="#">Forms</a>
<div class="uk-navbar-dropdown">
<ul class="uk-nav uk-navbar-dropdown-nav">
<li><a href="hallrentals">Hall Rentals</a></li>
<li><a href="standby">Standby Request</a></li>
<li><a href="https://www.state.nj.us/dep/parksandforests/fire/permits.html">Burn
Permits</a></li>
</ul>
</div>
</li>
</ul>
</div>
<a class="uk-navbar-item uk-logo">
<img src="resources/img/logo.png" id="navbrand"
alt="Lebanon Township Fire Department Logo - Medallion" height="50" width="auto">
</a>
<div class="uk-navbar-center-right">
<ul class="uk-navbar-nav">
<li><a href="volunteer">Volunteer</a></li>
<li><a href="contact">Contact</a></li>
<li><a href="login">Login</a></li>
</ul>
</div>
</div>
</nav>
</div>
</div>
</header>
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-lg-12 text-center">
<h1>Officers by Year</h1>
<table class='table table-bordered table-striped text-center'>
<thead class='thead-dark'>
<tr>
<th scope='col'>Year</th>
<th scope='col'>Chief</th>
<th scope='col'>EMS Deputy Chief</th>
<th scope='col'>EMS Captain</th>
<th scope='col'>EMS Lieutenant</th>
<th scope='col'>Fire Deputy Chief</th>
<th scope='col'>Fire Captain</th>
<th scope='col'>Fire Lieutenant</th>
<th scope='col'>President</th>
<th scope='col'>Vice President</th>
<th scope='col'>Treasurer</th>
<th scope='col'>Secretary</th>
</tr>
</thead>
<tbody>
<tr>
<td>2019-Present</td>
<td>Robert Pek</td>
<td>William Cutri-French</td>
<td>Philip Dacey</td>
<td>William Cox</td>
<td>David Sulpy</td>
<td>James Crampton</td>
<td>Daniel Paolilo</td>
<td>Daniel Paolilo</td>
<td>Rachel Laul</td>
<td>Linda Cox</td>
<td>Sarah Raper</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>