diff options
Diffstat (limited to 'templates/index.html')
| -rw-r--r-- | templates/index.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html index ad489d9..65068a9 100644 --- a/templates/index.html +++ b/templates/index.html @@ -6,6 +6,7 @@ <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Analyzing Climate Change using Earth Surface Temperature Visualization</title> + <link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet"> <link rel="stylesheet" href="{{url_for('static',filename='css/style.css')}}"> <link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A==" @@ -67,6 +68,9 @@ </main> </div> </body> -<script src="{{url_for('static',filename='js/map.js')}}"></script> +<script type="text/javascript"> + const cities = JSON.parse('{{cities_list | tojson}}'); +</script> +<script src="../static/js/map.js" defer></script> </html>
\ No newline at end of file |
