Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Add LinkedIn next to email in footer
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminaaron committed Jan 29, 2024
1 parent abb2c62 commit d6fca82
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
16 changes: 15 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -595,4 +595,18 @@ body {
/*# sourceMappingURL=maps/style.css.map */
.linkedin-logo-small {
width: 25px;
}
}

.linkedin-logo-footer {
width: 42px;
}

.footer-divider {
margin: 0 10px;
font-size: x-large;
color: lightgray;
}

.footer-mailto {
margin-top: 6px;
}
6 changes: 5 additions & 1 deletion src/_includes/base.njk
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,11 @@
<div class="container">
<div class="row site-footer-link">
<p>
{{footer.text}} <a href="mailto:{{footer.email}}">{{footer.email}}</a>
<a href="{{nav.linkedinLink}}" target="_blank">
<img class="linkedin-logo-footer" src="{% rootPath %}{{nav.linkedinLogo}}" alt="linkedin-logo" />
</a>
<div class="footer-divider">|</div>
<a class="footer-mailto" href="mailto:{{footer.email}}">{{footer.email}}</a>
</p>
</div>
</div>
Expand Down

0 comments on commit d6fca82

Please sign in to comment.