-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathindex.scala.html
More file actions
66 lines (56 loc) · 3.41 KB
/
index.scala.html
File metadata and controls
66 lines (56 loc) · 3.41 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
@(version: String)
@main("Rearview") {
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Rearview</title>
<meta charset='utf-8' />
<meta name='description' content='Real-Time Monitoring'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<meta name='robots' content='noindex'>
<link href='/public/login/icons/rearview.svg' rel='icon' type='image/png' />
<link href='/public/login/icons/icons/tools/rearview.svg' rel='apple-touch-icon' type='image/png' />
<link href="@routes.Assets.at("/public", "vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.9.2.custom.css")" rel='stylesheet' />
<link href="@routes.Assets.at("/public", "vendor/bootstrap/css/bootstrap.css")" rel='stylesheet' />
<link href="@routes.Assets.at("/public", "vendor/bootstrap/css/bootstrap-responsive.css")" rel='stylesheet' />
<link href="@routes.Assets.at("/public", "vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css")" rel='stylesheet' />
<link href="@routes.Assets.at("/public", "vendor/bootstrap/plugins/font-awesome/css/font-awesome.css")" rel="stylesheet">
<link href="@routes.Assets.at("/public", "vendor/codemirror/lib/codemirror.css")" rel='stylesheet' />
<link href="@routes.Assets.at("/public", "vendor/codemirror/theme/ambiance.css")" rel='stylesheet' />
<link href="@routes.Assets.at("/public", "vendor/timeline/timeline.css")" rel='stylesheet' />
<link href="@routes.Assets.at("/public", "less/rearview.less")" rel='stylesheet/less' type='text/css' />
<script src="@routes.Assets.at("/public", "vendor/less/js/less.js")" type='text/javascript'></script>
<link rel="stylesheet" href="../../public/css/persona-buttons.css" />
<script src="https://login.persona.org/include.js"></script>
<!-- <link href="@routes.Assets.at("/public", "css/rearview.css")" rel='stylesheet' /> -->
<!--[if lt IE 9]>
<script src='http://html5shim.googlecode.com/svn/trunk/html5.js'></script>
<![endif]-->
</head>
<body class='ls-rearview'>
<div align="right" style="margin-top:50px">
<button onclick='showAddUser()' class='persona-button dark'><span>Add new user</span></button>
<button onclick='signout()' class='persona-button orange'><span>Sign out</span></button>
<script src='../../public/js/persona.js'></script>
</div>
<section class='alert-wrap clearfix'></section>
<section class='primary-nav-wrap clearfix'></section>
<section class='header-wrap clearfix'></section>
<section class='timeline-wrap clearfix'></section>
<section class='ecosystem-application-wrap clearfix'></section>
<section class='add-application-wrap'></section>
<section class='monitor-wrap clearfix'>
<div class='monitor-panel container clearfix'></div>
<div class='edit-monitor-wrap clearfix'></div>
</section>
<section class='delete-monitor-wrap'></section>
<section class='add-monitor-wrap'></section>
<section class='secondary-nav-wrap'></section>
<script type='text/javascript'>
var rearview = {};
rearview.version = "@version";
</script>
<script data-main="@routes.Assets.at("/public", "js/main")" src="@routes.Assets.at("/public", "vendor/require/js/require.js")"></script>
</body>
</html>
}