Skip to content

Commit aa7957c

Browse files
committed
fix: Align the footer social links with the other Stackable sites
The set now matches the stackable.tech footer, which the hub footer also tracks: LinkedIn, GitHub, YouTube and the news feed, in that order, plus Discord. Discord appears on the hub but not on the homepage, so this is the first Stackable footer to carry all five. RSS comes from Font Awesome's solid set rather than brands, and each anchor needs its own aria-label because the svg is aria-hidden and the link has no text.
1 parent afb843b commit aa7957c

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

ui/build.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,9 @@ const icons = {
160160
search: 'solid/magnifying-glass',
161161
linkedin: 'brands/linkedin',
162162
github: 'brands/github',
163+
youtube: 'brands/youtube',
164+
rss: 'solid/rss',
165+
discord: 'brands/discord',
163166
link: 'solid/link'
164167
};
165168
const symbols = Object.entries(icons).map(([name, faIcon]) => {

ui/src/partials/footer-content.hbs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,15 @@
6363
<a class="social-icon" href="https://github.com/stackabletech" target="_blank" aria-label="Stackable on GitHub">
6464
<svg class="svg-icon" aria-hidden="true"><use href="#icon-github"/></svg>
6565
</a>
66+
<a class="social-icon" href="https://www.youtube.com/@stackabletech" target="_blank" aria-label="Stackable on YouTube">
67+
<svg class="svg-icon" aria-hidden="true"><use href="#icon-youtube"/></svg>
68+
</a>
69+
<a class="social-icon" href="https://stackable.tech/en/feed/?category_name=news%2Cblog" target="_blank" aria-label="Stackable news and blog feed">
70+
<svg class="svg-icon" aria-hidden="true"><use href="#icon-rss"/></svg>
71+
</a>
72+
<a class="social-icon" href="https://discord.com/invite/7kZ3BNnCAF" target="_blank" aria-label="Join the Stackable Discord community">
73+
<svg class="svg-icon" aria-hidden="true"><use href="#icon-discord"/></svg>
74+
</a>
6675
</div>
6776
</div>
6877
<p class="copyright-notice">

0 commit comments

Comments
 (0)