forked from JUNIandPIRATES/daARA_service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdaARA_main.html
More file actions
93 lines (81 loc) · 4.2 KB
/
daARA_main.html
File metadata and controls
93 lines (81 loc) · 4.2 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!doctype html>
<html lang="en">
<head>
<title>daARA Main</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="styles/daARA_main_style.css">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div id="title-bar">
<div id="title" onclick="location.href='daARA_main.html'">daARA</div>
<div id="title-bar-btns">
<img src = "img/Minimize.png" class="titleBTN" id="min-btn">
<img src = "img/Maximize.png" class="titleBTN" id="max-btn">
<img src = "img/Close.png" class="titleBTN" id="close-btn">
</div>
</div>
</div>
<div class="wrapper d-flex align-items-stretch">
<nav id="sidebar">
<div class="p-4 pt-5">
<a href="#" class="img logo rounded-circle mb-5"
style="background-image: url(img/daARA-ICON.ico); background-size: 90%;" id="main_daARA_logo" onClick="main_logo_click()"></a>
<ul class="list-unstyled components mb-5">
<li class="active">
<a href="#homeSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">강의관리</a>
<ul class="collapse list-unstyled" id="homeSubmenu">
<li>
<a href="#" onclick="location.href='daARA_UpLoad.html'">강의 추가하기</a>
</li>
<li>
<a href="#" onclick="location.href='daARA_Admin.html'">학생 관리하기</a>
</li>
</ul>
</li>
<li>
<a href="#" onclick="location.href='daARA_InLecture.html'">강의 시작하기</a>
</li>
<li>
<a href="daARA_how_to_use.html">사용법</a>
</li>
<li>
<a href="#homeSubmenu2" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">About daARA</a>
<ul class="collapse list-unstyled" id="homeSubmenu2">
<li>
<a href="#" onclick="location.href='daARA_about.html'">Team daARA</a>
</li>
<li>
<a href="#" onclick="location.href='daARA_release_note.html'">Release Note</a>
</li>
</ul>
</li>
</ul>
<div class="footer">
<p>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©
<script>document.write(new Date().getFullYear());</script> All rights reserved | This template
is made with <i class="icon-heart" aria-hidden="true"></i> by <a href="https://colorlib.com"
target="_blank">Colorlib.com</a>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
</p>
</div>
</div>
</nav>
<div id="content" style="background-image: 'img/background.jpg'; width: 100%; height: 100%">
</div>
</div>
<!-- Insert this line above script imports -->
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<script src="js/daARA_main_jquery.min.js"></script>
<!-- Insert this line after script imports -->
<script>if (window.module) module = window.module;</script>
<script src="js/daARA_main_popper.js"></script>
<script src="js/daARA_main_bootstrap.min.js"></script>
<script src="js/daARA_main.js"></script>
</body>
</html>