This repository has been archived on 2021-01-16. You can view files and clone it, but cannot push or open issues/pull-requests.
satyr/site/index.html

24 lines
836 B
HTML
Raw Permalink Normal View History

2020-10-14 00:03:45 -05:00
<!DOCTYPE html>
<head>
<link rel="stylesheet" type="text/css" href="/styles.css">
<link rel="stylesheet" type="text/css" href="/local.css">
<link rel="icon" type="image/svg" href="/logo.svg">
2020-10-14 00:03:45 -05:00
<script src="/nunjucks-slim.js"></script>
<script src="/templates.js"></script>
<script src="/dashjs/dash.all.min.js"></script>
2020-10-14 00:03:45 -05:00
<script>
nunjucks.configure({ autoescape: true });
//should check for and refresh login tokens on pageload..
if(document.cookie.match(/^(.*;)?\s*X-Auth-As\s*=\s*[^;]+(.*)?$/) !== null) {
var xhr = new XMLHttpRequest();
xhr.open("POST", "/api/login", true);
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhr.send("");
}
</script>
2020-10-14 00:03:45 -05:00
</head>
<body onload="render(window.location.pathname)">
<script src="/index.js"></script>
2020-10-14 00:03:45 -05:00
</body>