-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopendev.html
More file actions
31 lines (28 loc) · 853 Bytes
/
opendev.html
File metadata and controls
31 lines (28 loc) · 853 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Cache-Control" content="no-store, must-revalidate" />
<meta http-equiv="Expires" content="0" />
<title>os-signage</title>
<link rel="stylesheet" href="assets/css/theme.css" type="text/css">
<style>
.fill {
min-height: 100vh;
height: 100%;
background: url(assets/images/opendev-background.svg) center bottom;
background-size: cover;
}
.fill pre {
color: white;
}
</style>
</head>
<body class="fill">
<div id="app"></div>
<script src="/dist/manifest.build.js"></script>
<script src="/dist/commons.build.js"></script>
<script src="/dist/opendev-banner.build.js"></script>
</body>
</html>