From d07d68dde43f2d8a7cf33814c965a9e85aee117c Mon Sep 17 00:00:00 2001
From: Todd Ginsberg
Date: Tue, 19 Nov 2024 12:10:47 -0500
Subject: [PATCH] Support for Bluesky profiles (#86)
+ Add link to main page
+ Add link to map
---
index.html | 3 +++
map.html | 3 +++
2 files changed, 6 insertions(+)
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 %}