Added a bunch of stuff for SEO mostly (some other little stuff but most of it is half done at this point)
All checks were successful
Build and deploy Main Bridgeman Accessible website to QA/Stagging (private Kubernetes cluster) / build (push) Successful in 2m33s
Build and deploy Main Bridgeman Accessible website to QA/Stagging (private Kubernetes cluster) / deploy (push) Successful in 6s

This commit is contained in:
Alan Bridgeman 2025-07-12 15:29:48 -05:00
parent ab8af728b4
commit 1444ff9003
15 changed files with 501 additions and 73 deletions

View file

@ -49,67 +49,67 @@
</ul>
</section>
<section class="about-team">
<h2>Our Team</h2>
<p>Our team is made up of experienced professionals who are passionate about digital accessibility. Here are a few of our key team members:</p>
<ul>
<%
people.forEach(
(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 %>" alt="A photo of <%= person.fname %> <%= person.lname %>">
<%
}
else {
%>
<i class="fa-solid fa-user fa-3x"></i>
<%
}
%>
</div>
<div class="side-by-side-item">
<h3><%= person.fname %> <%= person.lname %></h3>
<p><%= person.position %></p>
<%
if (typeof(person.bio) !== 'undefined') {
%>
<p><%= person.bio %></p>
<%
}
%>
<%
if (typeof(person.website) !== 'undefined') {
%>
<a href="<%= person.website %>"><i class="fa-solid fa-globe"></i> Website</a>
<%
}
%>
<%
if (typeof(person.email) !== 'undefined') {
%>
<a href="mailto:<%= person.email %>"><i class="fa-solid fa-envelope"></i> Email</a>
<%
}
%>
<%
if (typeof(person.phone) !== 'undefined') {
%>
<a href="tel:<%= person.phone %>"><i class="fa-solid fa-phone"></i> Call</a>
<%
}
%>
</div>
</div>
</li>
<%
}
);
%>
</ul>
</section>
<%# <section class="about-team"> %>
<%# <h2>Our Team</h2> %>
<%# <p>Our team is made up of experienced professionals who are passionate about digital accessibility. Here are a few of our key team members:</p> %>
<%# <ul> %>
<%# < %>
<%# people.forEach( %>
<%# (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 >" alt="A photo of <= person.fname > <= person.lname >"> %>
<%# < %>
<%# } %>
<%# else { %>
<%# > %>
<%# <i class="fa-solid fa-user fa-3x"></i> %>
<%# < %>
<%# } %>
<%# > %>
<%# </div> %>
<%# <div class="side-by-side-item"> %>
<%# <h3><= person.fname > <= person.lname ></h3> %>
<%# <p><= person.position ></p> %>
<%# < %>
<%# if (typeof(person.bio) !== 'undefined') { %>
<%# > %>
<%# <p><= person.bio ></p> %>
<%# < %>
<%# } %>
<%# > %>
<%# < %>
<%# if (typeof(person.website) !== 'undefined') { %>
<%# > %>
<%# <a href="<= person.website >"><i class="fa-solid fa-globe"></i> Website</a> %>
<%# < %>
<%# } %>
<%# > %>
<%# < %>
<%# if (typeof(person.email) !== 'undefined') { %>
<%# > %>
<%# <a href="mailto:<= person.email >"><i class="fa-solid fa-envelope"></i> Email</a> %>
<%# < %>
<%# } %>
<%# > %>
<%# < %>
<%# if (typeof(person.phone) !== 'undefined') { %>
<%# > %>
<%# <a href="tel:<= person.phone >"><i class="fa-solid fa-phone"></i> Call</a> %>
<%# < %>
<%# } %>
<%# > %>
<%# </div> %>
<%# </div> %>
<%# </li> %>
<%# < %>
<%# } %>
<%# ); %>
<%# > %>
<%# </ul> %>
<%# </section> %>