Skip to content

Commit ad010e6

Browse files
committed
Add link to Bluesky profile
Signed-off-by: Manuel Rego Casasnovas <[email protected]>
1 parent 3f0d7c7 commit ad010e6

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

_data/social.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[
22
{ "title": "GitHub", "color": "github-color", "url": "https://github.com/servo/servo", "icon": "fab fa-github" },
33
{ "title": "Mastodon", "color": "mastodon-color", "url": "https://floss.social/@servo", "icon": "fab fa-mastodon" },
4+
{ "title": "Bluesky", "color": "bluesky-color", "url": "https://bsky.app/profile/servo.org", "icon": "fab fa-bluesky" },
45
{ "title": "Twitter", "color": "twitter-color", "url": "https://twitter.com/ServoDev", "icon": "fab fa-twitter" }
56
]

_includes/footer.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<a href="https://servo.zulipchat.com/">Zulip Chat</a>,
66
<a href="https://github.com/servo/servo/discussions">GitHub Discussions</a>,
77
<a href="https://floss.social/@servo">Mastodon</a>,
8+
<a href="https://bsky.app/profile/servo.org">Bluesky</a>,
89
<a href="https://twitter.com/ServoDev">Twitter</a>
910
</div>
1011
<div class="container" style="text-align: center; font-size: 0.875em;">

_includes/social-buttons.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
<div class="navbar-end">
22
{% for link in social %}
33
<div class="navbar-item">
4-
<a class="button is-{{ link.color }}" href="{{ link.url | url }}"{% if link.title == "Mastodon" %} rel="me"{% endif %}>
4+
<a class="button is-{{ link.color }}" title="{{ link.title }}" href="{{ link.url | url }}"{% if link.title == "Mastodon" %} rel="me"{% endif %}>
55
<span class="icon"><i class="{{ link.icon }}"></i></span>
6-
<span>{{ link.title }}</span>
76
</a>
87
</div>
98
{% endfor %}

assets/sass/style.sass

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@charset "utf-8"
22

33
@import url("https://fonts.googleapis.com/css?family=Fira+Sans:300,400,600,700|Fira+Mono:300,400,600,700|Fire+Sans:100,200,300,400,500,600,700")
4-
@import url("https://use.fontawesome.com/releases/v5.12.0/css/all.css")
4+
@import url("https://use.fontawesome.com/releases/v6.5.2/css/all.css")
55

66
// Site-specific variables here
77
@@ -58,8 +58,10 @@ $menu-item-hover-background-color: $dark
5858
$github-color: #000000
5959
$twitter-color: #00aced
6060
$mastodon-color: #6d6eff
61+
$bluesky-color: #0085ff
6162
$colors: mergeColorMaps(("github-color": ($github-color, $white)), $colors)
6263
$colors: mergeColorMaps(("twitter-color": ($twitter-color, $white)), $colors)
64+
$colors: mergeColorMaps(("bluesky-color": ($bluesky-color, $white)), $colors)
6365
$colors: mergeColorMaps(("mastodon-color": ($mastodon-color, $white)), $colors)
6466

6567
// Bulma core

0 commit comments

Comments
 (0)