diff --git a/local_spaces/static/style.css b/local_spaces/static/style.css
deleted file mode 100644
index e69de29..0000000
diff --git a/local_spaces/templates/index.html b/local_spaces/templates/index.html
index db599b5..2b63589 100644
--- a/local_spaces/templates/index.html
+++ b/local_spaces/templates/index.html
@@ -8,35 +8,29 @@
Local Spaces
-
-
+
-
-
-
-
-
Distance: miles
+
+
+
+
+
- Other Local Hackspaces
@@ -47,7 +41,8 @@ Other Local Hackspaces
const spaces = Array.from(data).sort((a, b) => a['data']['distance'] - b['data']['distance']);
spaces.forEach(function (val, indx) {
var obj = $($("template#space-block").html());
- obj.find('#space-name').html(val['data']['space']);
+ obj.find('#space-name a').html(val['data']['space']);
+ obj.find('#space-name a').attr('href', val['data']['url']);
obj.find('#space-distance').html(Math.round(val['distance'] * 100) / 100);
let status = 'Closed';