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 fc6e2b3b0b Latest Image system no longer writes to the static directory
This is necessary to run Flamenco Manager from a different directory than
the extracted tarball. Also an error opening the file is now shown in the
image, and some logging was improved.
2019-05-03 18:21:09 +02: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/jquery.min.js"></script>
<script src="/static/jwtauth.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('/latest-image.jpg');
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}
</style>
</head>
<body class='imageviewer'>
<a href='/'></a>
</body>
</html>