-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 1016 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 1016 Bytes
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
<!--
* File Name : index.html
* Date Created : 2023.04.25
* Writer : 배태주
* Description : ABLESTACK Cockpit Plugin index page
-->
<!DOCTYPE html>
<html>
<head>
<title>ABLESTACK</title>
<!-- 공통 필요 스타일 및 자바스크립트 영역 시작 -->
<meta charset="utf-8">
<link href="./node_modules/@patternfly/patternfly/patternfly.css" type="text/css" rel="stylesheet">
<script src="../base1/cockpit.js"></script>
<script src="./src/common/jquery-3.5.1.js"></script>
<link href="./src/common/jquery-ui.css" type="text/css" rel="stylesheet">
<link href="./src/common/jquery.timepicker.min.css" type="text/css" rel="stylesheet">
<script src="./src/common/jquery-ui.min.js"></script>
<script src="./src/common/jquery.timepicker.min.js"></script>
<!-- 공통 필요 스타일 및 자바스크립트 영역 끝 -->
</head>
<body id="index-page">
</body>
<script src="./index.js"></script>
</html>