Spaces:
Running
Running
Commit
·
83892b4
1
Parent(s):
d946b3d
Update templates/index.html
Browse files- templates/index.html +3 -3
templates/index.html
CHANGED
@@ -203,7 +203,7 @@
|
|
203 |
|
204 |
<div class="info" id="info">
|
205 |
<h1 id="country" style="color:rgb(53, 53, 53); margin-top: 10px; font-family: 'Helvetica'; font-weight: 50; margin-bottom: 10px;"> searching...</h1>
|
206 |
-
<a href="{{ ip_link }}" target="_blank"> <h3>{{ page_title }}</h3></a>
|
207 |
|
208 |
<div style="display: flex; margin-top: 22px; margin-bottom: 0%;">
|
209 |
<a href="?new=true" style="margin-right: 10px; display: inline-block;">
|
@@ -259,8 +259,8 @@
|
|
259 |
const infoText = document.getElementById("info-text");
|
260 |
infoText.style.opacity = "0";
|
261 |
|
262 |
-
|
263 |
-
|
264 |
|
265 |
const newUrl = "{{ url }}";
|
266 |
|
|
|
203 |
|
204 |
<div class="info" id="info">
|
205 |
<h1 id="country" style="color:rgb(53, 53, 53); margin-top: 10px; font-family: 'Helvetica'; font-weight: 50; margin-bottom: 10px;"> searching...</h1>
|
206 |
+
<a href="{{ ip_link }}" target="_blank"> <h3><span id="location-name">{{ page_title }}</span</h3></a>
|
207 |
|
208 |
<div style="display: flex; margin-top: 22px; margin-bottom: 0%;">
|
209 |
<a href="?new=true" style="margin-right: 10px; display: inline-block;">
|
|
|
259 |
const infoText = document.getElementById("info-text");
|
260 |
infoText.style.opacity = "0";
|
261 |
|
262 |
+
const locationName = document.getElementById("location-name");
|
263 |
+
locationName.textContent = "{{ name }}";
|
264 |
|
265 |
const newUrl = "{{ url }}";
|
266 |
|