summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: a2e6d0bc1b9498041969e19dc2a69ac5c3fd51a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <script src="https://cdn.tailwindcss.com"></script>
  <title>Document</title>
</head>
<body>
  Привет
  {% if 'city' in client_geo %}
    <p>{{client_geo['country']}}</p>
    <p>{{client_geo['city']}}</p>
    <p>{{client_geo['query']}}</p>
  {% endif %}
</body>
</html>