2017-10-27 11:38:02 +02:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
2018-09-09 10:26:23 +02:00
|
|
|
<title>Freifunk MWU Server "{{ inventory_hostname_short }}" </title>
|
2017-10-27 11:38:02 +02:00
|
|
|
<link href="./static/favicon.ico" rel="shortcut icon" />
|
|
|
|
<link href="./static/style.css" rel="stylesheet" type="text/css" media="screen" />
|
|
|
|
<script type="text/javascript">
|
|
|
|
<!--
|
|
|
|
function toggle(id)
|
|
|
|
{
|
|
|
|
var e = document.getElementById(id);
|
|
|
|
e.style.display = (e.style.display == 'none') ? 'block' : 'none';
|
|
|
|
}
|
|
|
|
-->
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
2018-09-09 10:26:23 +02:00
|
|
|
<h1>Freifunk MWU Server <a href="./index.html">{{ inventory_hostname_short }}</a></h1>
|
2017-10-27 11:38:02 +02:00
|
|
|
</header>
|
2019-03-02 18:10:48 +01:00
|
|
|
{% if server_type == "firmware-build" or server_type == "gateway" %}
|
2017-10-27 11:38:02 +02:00
|
|
|
<div class="block"><a href="firmware">Firmware</a></div>
|
2018-09-09 10:26:23 +02:00
|
|
|
{% endif %}
|
2019-03-02 18:10:48 +01:00
|
|
|
{% if server_type == "firmware-build" %}
|
2018-07-24 17:09:02 +02:00
|
|
|
<div class="block"><a href="_archive">Firmware Archiv</a></div>
|
|
|
|
{% endif %}
|
2017-10-27 11:38:02 +02:00
|
|
|
</body>
|
|
|
|
</html>
|