Mostly added a contact page instead of direct mail link. But lots of little things mostly around cleanup too.
This commit is contained in:
parent
d2db2037f4
commit
4e1a13b537
18 changed files with 905 additions and 859 deletions
|
|
@ -64,6 +64,11 @@
|
|||
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>
|
||||
<%
|
||||
}
|
||||
%>
|
||||
|
|
@ -88,7 +93,14 @@
|
|||
<%
|
||||
if (typeof(person.email) !== 'undefined') {
|
||||
%>
|
||||
<a href="mailto:<%= person.email %>"><i class="fa-solid fa-envelope"></i> Contact</a>
|
||||
<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>
|
||||
<%
|
||||
}
|
||||
%>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue