-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 910 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
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>WebApp - Index</title>
<!-- Custom Siemens Theme -->
<link href="siemens-theme.css" rel="stylesheet">
</head>
<body>
<div id="_mscontent">
<!-- Side Navigation-->
<div class="sidenav">
<img src="siemens.svg" class="sidenav-title">
<a href="deviceassetlist.html">Device Assets</a>
<a href="agentassetlist.html">Agent Assets</a>
<a href="emailalert.html">Email Alert</a>
</div>
<!-- Side Content -->
<div class="main">
<h2>WebApp - Index</h2>
<p>Open any page.</p>
</div>
</div>
</body>
<!-- MindSphere OS bar -->
<script src="https://static.eu1.mindsphere.io/osbar/js/main.min.js"></script>
<script>
_msb.init({
title: "WebApp - Index",
appId: "_mscontent"
});
</script>
</html>