5
0
mirror of https://github.com/cwinfo/yggdrasil-map synced 2024-09-20 02:32:30 +00:00
yggdrasil-map/web/templates/base.html

25 lines
772 B
HTML
Raw Normal View History

2014-03-19 09:12:47 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
2014-05-13 23:25:07 +00:00
<title>fc00::/8 Mapping Hyperboria</title>
2014-03-19 09:12:47 +00:00
<script src="static/jquery-2.0.3.min.js"></script>
<script src="static/jquery.autocomplete.min.js"></script>
<link href='static/style.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="header">
<h1>fc00<span class="grey">::/8</span></h1>
<ul>
2014-05-13 22:36:55 +00:00
<li><a href="/" {% if page == 'network' %} class="selected" {% endif %}>Network</a></li>
<li><a href="/about"{% if page == 'about' %} class="selected" {% endif %}>About</a></li>
2015-07-26 17:08:51 +00:00
<li><a href="https://github.com/zielmicha/fc00.org">Source</a></li>
2015-08-28 07:07:44 +00:00
<li><tt>{% if ip is not none %}{{ ip }}{% endif %}</tt></li>
2014-03-19 09:12:47 +00:00
</ul>
</div>
{% block content %}{% endblock %}
</body>
</html>