-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (82 loc) · 4.56 KB
/
index.html
File metadata and controls
83 lines (82 loc) · 4.56 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
<!DOCTYPE html>
<html lang="en">
<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>PSG-BLOG</title>
<title>PSG-BLOG</title>
<title>PSG-BLOG</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link href="./static/css/main.css" rel="stylesheet">
</head>
<body>
<div class="whole" style="width: 100%; height: 100%">
<div class="modal fade" id="filterModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content" style="margin-top: 15vh;">
<div class="modal-header">
<h3 class="m-auto">카테고리를 골라주세요</h3>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-x-lg" viewBox="0 0 16 16" data-bs-dismiss="modal" aria-label="Close">
<path d="M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z"/>
</svg>
</div>
<div class="modal-body">
<div class="container text-center category-container">
</div>
<div class="container text-center">
<button class="select-filter" data-bs-dismiss="modal" aria-label="Close">선택완료</button>
</div>
</div>
</div>
</div>
</div>
<div class="md-container">
<div style="width:100%; height: 150px;"></div>
<div class="container searchBarCtnr" id="searchBarCtnr">
<input type="text" id="searchBar" class="searchBar" autocomplete="off">
<svg style="position: absolute;top: 163px;margin-left: 20px;margin-right: 20px;" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" class="bi bi-search" viewBox="0 0 16 16">
<path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/>
</svg>
</div>
<div class="container m-auto d-none" id="searchCandidate">
</div>
<div class="d-flex justify-content-between context-container">
<div class="nav">
<button class="nav-link" id="ct" data-bs-toggle="modal" data-bs-target="#filterModal">
카테고리 필터 +
</button>
</div>
<div class="nav" style="align-items: center;">
<div>📁</div>
<div class="fw-bold nav-link" style="font-size: 18px; padding-left : 5px; padding-right : 5px">총 포스트 수 </div>
<div class="totalWrite nav-link" style="font-size: 18px; font-weight: normal !important; padding : 8px 4px"></div>
</div>
</div>
<div class="recent">
<div class="write-container">
</div>
<div class="d-flex justify-content-center mt-2 mb-4">
<button style="border : 0px; background-color: white;">
<svg id="clickPre" xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-chevron-left" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z"/>
</svg>
</button>
<div class="paginates text-center">
</div>
<button style="border : 0px; background-color: white;">
<svg id="clickNext" xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-chevron-right" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</button>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
<script src="./static/javascript/constant.js"></script>
<script src="./static/javascript/initiate.js"></script>
<script src="./static/javascript/search.js"></script>
<script src="./static/javascript/main.js"></script>
</body>
</html>