Updated some information but mostly just added graphics and images to make the site more interesting

This commit is contained in:
Alan Bridgeman 2023-10-15 00:49:55 -05:00
parent ce47f6a76b
commit 78c81b8f00
15 changed files with 112 additions and 10 deletions

View file

@ -63,13 +63,17 @@
(person) => {
%>
<li>
<div class="side-by-side">
<div class="side-by-side-item" style="padding: 1rem">
<%
if (typeof(person.image) !== 'undefined') {
%>
<img src="img/<%= person.image %>" style="max-width:200px;height:auto;" alt="A photo of <%= person.fname %> <%= person.lname %>">
<img src="img/<%= person.image %>" alt="A photo of <%= person.fname %> <%= person.lname %>">
<%
}
%>
</div>
<div class="side-by-side-item">
<h3><%= person.fname %> <%= person.lname %></h3>
<p><%= person.position %></p>
<%
@ -93,6 +97,8 @@
<%
}
%>
</div>
</div>
</li>
<%
}