forked from owncloud/web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 811 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<meta name="theme-color" content="#375f7E"/>
<meta http-equiv="x-ua-compatible" content="IE=11">
<link rel="manifest" href="manifest.json">
<script src="node_modules/requirejs/require.js"></script>
<noscript>
<style>
#enable-js-banner {
display: flex;
flex-direction: row;
justify-content: center;
padding: 0.5rem;
background-color: #467391;
}
#banner-content{
color: white;
}
</style>
</noscript>
</head>
<body>
<main id="owncloud"></main>
<noscript>
<div id="enable-js-banner">
<span id="banner-content"><h3>Please enable JavaScript</h3></span>
</div>
</noscript>
</body>
</html>