This repository has been archived on 2023-02-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
flamenco-manager/static/latest-image.html
Sybren A. Stüvel 2a1735d25d Serve last-image.html as static page
This makes it easier to handle JWT tokens.
2019-03-25 16:44:54 +01:00

42 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Flamenco Manager - Latest Image</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="/static/js.cookie.min.js"></script>
<script src="/static/jwtauth.js"></script>
<script src="/static/jquery.min.js"></script>
<script src="/static/imagewatch.js" async></script>
<style>
* {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
a {
position: absolute;
}
body {
background-color: black;
background-image: url('/static/latest-image.jpg');
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}
</style>
</head>
<body class='imageviewer'>
<a href='/'></a>
</body>
</html>