-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdashboard.html
More file actions
45 lines (43 loc) · 1.72 KB
/
dashboard.html
File metadata and controls
45 lines (43 loc) · 1.72 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
<!DOCTYPE html>
<html data-th-lang="no">
<head>
<meta charset="UTF-8"></meta>
<meta http-equiv="Cache-control" content="NO-CACHE"></meta>
<meta name="viewport" content="width=device-width, initial-scale=1"></meta>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans|Open+Sans:700|Roboto:700|Roboto+Condensed:700"></link>
<link rel="stylesheet" data-th-href="${stylesUrl}"></link>
<span data-th-each="scr : ${pageContributions.headEnd}" data-th-remove="tag">
<span data-th-utext="${scr}" data-th-remove="tag"></span>
</span>
</head>
<body class="xp-page page-dashboard">
<div class="container-fluid">
<div class="row">
<div class="col">
<header>
<nav class="y-2">
<span data-th-text="${username}"></span> |
<a href="mailto:desken@ssb.no">desken@ssb.no</a> |
<a th:href="${linkToGuide}">Veiledning</a>
</nav>
<div class="misc">
<div class="logo-container">
<img data-th-src="${logoUrl}" class="logo" alt="" loading='lazy'/>
<span data-th-if="${environmentText}" data-th-utext="${environmentText}" class="environment-logo-overlay" />
</div>
<h1>Dashboard</h1>
</div>
</header>
<div id="dashboard"></div>
</div>
</div>
</div>
<script type="text/javascript" data-th-src="${jsLibsUrl}"></script>
<script type="text/javascript" data-th-src="${wsServiceUrl}"></script>
<span data-th-each="scr : ${pageContributions.bodyEnd}" data-th-remove="tag">
<span data-th-utext="${scr}" data-th-remove="tag"></span>
</span>
test
</body>
</html>