1
0
mirror of https://github.com/r4sas/Niflheim-api synced 2025-02-06 20:14:53 +00:00
r4sas 8897b48fc9 update files, add map and few more scripts
Signed-off-by: r4sas <r4sas@i2pmail.org>
2022-12-10 14:24:47 +00:00

26 lines
923 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>0200::/7 Mapping The Yggdrasil Network</title>
<script src="{{ url_for('static', filename='map/jquery-2.0.3.min.js')}}"></script>
<script src="{{ url_for('static', filename='map/jquery.autocomplete.min.js')}}"></script>
<link href="{{ url_for('static', filename='map/style.css')}}" rel="stylesheet" type="text/css">
</head>
<body>
<div id="header">
<h1>0200<span class="grey">::/7</span></h1>
<ul>
<li><a href="/">Status</a></li>
<li><a href="/map" {% if page == 'network' %} class="selected" {% endif %}>Map</a></li>
<li><a href="/map/about"{% if page == 'about' %} class="selected" {% endif %}>About</a></li>
<li><a href="https://github.com/r4sas/yggdrasil-monitor">Source</a></li>
<li><tt>{% if ip is not none %}{{ ip }}{% endif %}</tt></li>
</ul>
</div>
{% block content %}{% endblock %}
</body>
</html>