diff --git a/index.html b/index.html
index 189cd9e..61e62f5 100644
--- a/index.html
+++ b/index.html
@@ -30,6 +30,9 @@
{{ jug.name }}
{% if jug.mastodon %}
Mastodon
{% endif %}
+ {% if jug.bluesky %}
+ Bluesky
+ {% endif %}
{% endfor %}
diff --git a/map.html b/map.html
index e7c778c..e4b4a44 100644
--- a/map.html
+++ b/map.html
@@ -44,6 +44,9 @@
if ("{{ jug.mastodon }}".length > 0) {
popup += "Mastodon
";
}
+ if ("{{ jug.bluesky }}".length > 0) {
+ popup += "Bluesky
";
+ }
L.marker([{{ longitude }}, {{ latitude }}],{icon: dukeIcon}).addTo(mymap).bindPopup(popup);
{% endfor %}