Files
filestash/client/index.html
2019-01-28 01:09:45 +11:00

42 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Filestash</title>
<meta name="author" content="Mickael Kerjean <mickael@kerjean.me>">
<meta name="owner" content="http://github.com/mickael-kerjean/filestash">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<link rel="manifest" href="/assets/manifest.json">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="Nuage" name="apple-mobile-web-app-title">
<meta content="black-translucent" name="apple-mobile-web-app-status-bar-style">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/logo/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/assets/logo/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/assets/logo/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/x-icon" href="/assets/logo/favicon.ico" />
<link rel="mask-icon" href="/assets/logo/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="theme-color" content="#f2f3f5">
<meta name="description" content="browse your files in the cloud">
</head>
<body>
<div id="main" style="height: 100%">
<style>
html{
background: #f2f3f5;
color: #375160;
}
</style>
<script>
if(location.pathname == "/" || location.pathname == "/login"){
$style = document.querySelector("style");
$style.innerText = $style.innerText.replace("#f2f3f5", "#9AD1ED")
}
</script>
</div>
</body>
</html>