-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlist.html
143 lines (130 loc) · 4.54 KB
/
list.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hey Googler</title>
<link rel="stylesheet" href="./list.css" />
<!-- defer속성 추가 -->
</head>
<body>
<div class="wrap">
<header class="dir">
<div id="reload">
<img id="button-reload" src="images/icon_reload.png" />
<img id="nowExecutedFlag" src="" />
</div>
<span id="tooltip-reload" class="tooltip">reload</span>
<div id="dir-title-box">
<h1 id="dir-title" class="dir-text dir-title">
</h1>
</div>
</header>
<div id="dataContainer"></div>
<!-- <div id="keyword_template"> -->
<template id="keyword_template">
<div class="keyword-box" Key="">
<h3 class="keyword">검색어A</h3>
<!-- 저장 경로 변경시 수정 -->
<img class="toggle_keyword" src="images/icon_toggle.svg" />
</div>
<!-- <div class="path_template"> -->
<!-- 템플릿 태그 주의 -->
<!-- </div> -->
<div class="path-area"></div>
</template>
<template id="path_template">
<div class="path-box">
<div class="pathBox-left">
<a>
<h4 class="title">페이지 제목</h4>
</a>
<a class="hyperLink">
<p class="path" id="link">링크</p>
</a>
</div>
<div class="pathBox-right">
<div class="menubar">
<img class="menu_white" src="images/icon_menu.png" id="menuIcon" />
<ul>
<li class="white-menu1">삭제</li>
<li class="white-menu2" key="">타이틀 수정</li>
<li class="white-menu3" key="">메모</li>
</ul>
</div>
<img src="images/icon_memo.png" class="memoIcon" />
</div>
</div>
<span id="tooltip-title" class="tooltipTitle" style="display: none;">툴팁용 페이지 제목</span>
</template>
<div id="modal" class="modal-overlay">
<div class="modal-window">
<div class="title">
<b>메모를 작성해주세요 !</b> <br>(20글자 미만)
</div>
<div class="content">
<input type="text" id="memoInput" maxlength='20'>
</div>
<div class="btn-area">
<button class="modalBtn closeBtn">취소</button>
<button class="modalBtn saveBtn">저장</button>
</div>
</div>
</div>
<div id="modal-t" class="modal-overlay">
<div class="modal-window">
<div class="title">
<b>타이틀을 작성해주세요 !</b> <br>(100글자 미만)
</div>
<div class="content">
<input type="text" id="titleInput" maxlength='100'>
</div>
<div class="btn-area">
<button class="modalBtn closeBtn">취소</button>
<button class="modalBtn saveBtn">저장</button>
</div>
</div>
</div>
<ul class="contextmenu" id="contextmenu">
<li id="deleteGreen"><a>모두 삭제</a></li>
</ul>
<div id="confirmModal" class="modal-overlay">
<div class="modal-window">
<div class="title">
<b>해당 검색어를 삭제할 경우<br>하위 검색기록들이 모두 삭제됩니다.<br><br>이 검색어를 삭제하시겠습니까?</b>
</div>
<div class="btn-area">
<button class="modalBtn closeBtn">취소</button>
<button class="modalBtn deleteBtn">삭제</button>
</div>
</div>
</div>
<!-- </div> -->
</div>
<div id="startModal" class="hidden">
<p id="startModalContent"></p>
</div>
<div>
<img id="button-top" src="images/icon_up.png"></img>
</div>
<footer>
<div id="folder" class="icon">
<a href="./dirList.html">
<img id="button-folder" class="footer-button" src="images/icon_folder.svg" alt="folder icon" />
</a>
<span id="tooltip-folder" class="tooltip">폴더 목록</span>
</div>
<div id="start" class="icon">
<img id="button-start" class="footer-button" src="images/icon_start.svg" alt="start icon" />
<span id="tooltip-start" class="tooltip">추적 시작</span>
</div>
<div id="stop" class="icon">
<img id="button-stop" class="footer-button" src="images/icon_stop.svg" alt="stop icon" />
<span id="tooltip-stop" class="tooltip">추적 중단</span>
</div>
</footer>
<script type="text/javascript" defer src="./list.js"></script>
<!--스크립트 위치바꾸면 에러 남 !!-->
</body>
</html>