-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.html
36 lines (28 loc) · 990 Bytes
/
dashboard.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<title>Tessitura - Career Management for Classical Singers</title>
<!-- Core CSS - Include with every page -->
<link href='css/font-awesome.min.css' rel='stylesheet' type='text/css'>
<link href='css/google-fonts-chrome.min.css' rel='stylesheet' type='text/css'>
<!-- App-specific CSS -->
<link href='css/main.min.css' rel='stylesheet'>
<link href='css/tessitura.min.css' rel='stylesheet'>
</head>
<body>
<!-- Tessitura scripts -->
<script src='js/run.min.js'></script>
<script type='text/javascript'>
$(window).bind('load resize', function() {
width = (this.window.innerWidth > 0) ? this.window.innerWidth : this.screen.width;
if (width < 768) {
$('div.sidebar-collapse').addClass('collapse')
} else {
$('div.sidebar-collapse').removeClass('collapse')
}
});
</script>
</body>
</html>