-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added BSky to individuals (just me, please add your own, not sure of …
…all your accounts, but I'll follow once I do) Also added email and DDD Bsky to footer
- Loading branch information
1 parent
e003ada
commit 1486275
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,9 +15,15 @@ | |
</div> | ||
{/if} | ||
<div class="footer primary-bg"> | ||
<a href="https://bsky.app/profile/dddsouthwest.bsky.social" target="_blank"> | ||
<i class="fa-brands fa-bluesky fa-3x" title="DDD South West BlueSky"></i> | ||
</a> | ||
<a href="https://twitter.com/dddsouthwest" target="_blank"> | ||
<i class="fa-brands fa-twitter fa-3x" title="DDD South West Twitter"></i> | ||
</a> | ||
<a href="mailto:[email protected]"> | ||
<i class="fa-solid fa-envelope fa-3x icon" title="DDD South West Email"></i> | ||
</a> | ||
<a href="https://www.linkedin.com/company/ddd-south-west/" target="_blank"> | ||
<i class="fa-brands fa-linkedin fa-3x" title="DDD South West LinkedIn"></i> | ||
</a> | ||
|
@@ -43,4 +49,13 @@ | |
h2 { | ||
padding: 0 10px; | ||
} | ||
.icon { | ||
color: black; | ||
transition: color 0.3s; | ||
} | ||
.icon:hover { | ||
color: white; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,6 +46,7 @@ | |
imageName: 'carl.jpg', | ||
email: '[email protected]', | ||
twitter: 'carlcod_es', | ||
bsky: 'carlcod.es', | ||
linkedIn: 'carl-sargunar-63b5814' | ||
}, | ||
{ | ||
|
@@ -85,6 +86,11 @@ | |
<img src="../images/team/{member.imageName}" alt={member.name} class="boop-effect" /> | ||
<span>{member.name}</span> | ||
<span> | ||
{#if member.bsky} | ||
<a href="https://bsky.app/profile/{member.bsky}" target="_blank"> | ||
<i class="fa-brands fa-bluesky fa-2x icon" title="{member.name} BlueSky"></i> | ||
</a> | ||
{/if} | ||
{#if member.twitter} | ||
<a href="https://twitter.com/{member.twitter}" target="_blank"> | ||
<i class="fa-brands fa-twitter fa-2x icon" title="{member.name} Twitter"></i> | ||
|