Skip to content

Commit 3bf4719

Browse files
Copilotckenst
andauthored
Add social media icons row to footer (#827)
* Initial plan * Add social icons row to footer above copyright section Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com> * Add security and accessibility improvements to footer social icons Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com> * Update footer social icons with actual URLs and Font Awesome 6.5.1 icons Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com>
1 parent 8f3cd82 commit 3bf4719

2 files changed

Lines changed: 27 additions & 0 deletions

File tree

_includes/footer.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,17 @@
2929
</ul>
3030
</div>
3131
</div>
32+
<div class="footer-social-icons">
33+
<a href="https://testingconferences.us11.list-manage.com/subscribe?u=2a811daec24cc97909dfdf01d&id=88f87313fc" target="_blank" rel="noopener noreferrer" aria-label="Subscribe to Newsletter" title="Subscribe to Newsletter">
34+
<i class="fa-solid fa-envelope fa-2x"></i>
35+
</a>
36+
<a href="https://github.com/TestingConferences/testingconferences.github.io" target="_blank" rel="noopener noreferrer" aria-label="GitHub" title="GitHub">
37+
<i class="fa-brands fa-github fa-2x"></i>
38+
</a>
39+
<a href="https://x.com/testconferences" target="_blank" rel="noopener noreferrer" aria-label="X (Twitter)" title="X (Twitter)">
40+
<i class="fa-brands fa-x-twitter fa-2x"></i>
41+
</a>
42+
</div>
3243
<div name="copyright" class="footer-col-wrapper">
3344
© 2015 - 2026 {{ site.title }} by <a href="https://www.kenst.com/" target="_blank">Chris Kenst</a>
3445
</div>

_sass/_layout.scss

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,22 @@
201201
}
202202
}
203203

204+
.footer-social-icons {
205+
text-align: center;
206+
padding: 20px 0;
207+
208+
a {
209+
color: $grey-color;
210+
margin: 0 15px;
211+
transition: color 0.3s ease;
212+
213+
&:hover,
214+
&:focus {
215+
color: $grey-color-dark;
216+
}
217+
}
218+
}
219+
204220

205221

206222
/**

0 commit comments

Comments
 (0)