<!doctype html>
<html>
    <head>
        <title>Index - {DEVICE}</title>
        <link rel="stylesheet" type="text/css" href="style.css"/>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta name="apple-mobile-web-app-capable" content="yes">
        <script type="text/javascript">
            getAjax('/livedata', 'livedata');
            window.setInterval("getAjax('/livedata', 'livedata')", {JS_TS});

            function getAjax(url, resid) {
                var http = null;
                http = new XMLHttpRequest();
                if(http != null) {
                   http.open("GET", url, true);
                   http.onreadystatechange = print;
                   http.send(null);
                }

                function print() {
                    if(http.readyState == 4) {
                        document.getElementById(resid).innerHTML = http.responseText;
                    }
                }
            }
        </script>
        <style type="text/css">
        </style>
    </head>
    <body>
        <h1>AHOY - {DEVICE}</h1>
        <div id="content" class="content">
            <div id="livedata"></div>
            <p>Every {TS}seconds the values are updated</p>
        </div>
        <div id="footer">
            <p class="left">&copy 2022</p>
            <p class="left"><a href="/">Home</a></p>
            <p class="right">AHOY :: {VERSION}</p>
        </div>
    </body>
</html>