-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (106 loc) · 3.64 KB
/
index.html
File metadata and controls
106 lines (106 loc) · 3.64 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
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta
name="description"
content="대구소프트웨어마이스터고등학교 코드 공유 플랫폼 Sh4re!"
/>
<meta
name="keywords"
content="대구소프트웨어마이스터고등학교, 대소고, Sh4re!, sh4re, 대소마고, 코드 공유 플랫폼"
/>
<meta name="author" content="채근영" />
<meta property="og:title" content="sh4re!" />
<meta
property="og:description"
content="대구소프트웨어마이스터고등학교 코드 공유 플랫폼 Sh4re!"
/>
<meta
property="og:image"
content="https://sh4re.chaeyn.com/sh4reIcon.png"
/>
<meta property="og:url" content="https://sh4re.chaeyn.com" />
<meta
name="google-site-verification"
content="07rxD3sUBYQzE0a1nNHJWxoZHNE_0tnYDMGzMotpKyU"
/>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/sh4reIcon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sh4re!</title>
</head>
<body>
<nav class="tab-menu">
<ul>
<li>
<a href="#" class="tab-button active" data-subject="Python"
><img src="/pythonLogo.svg" alt="pythonLogo" class="tab-icon" />
<span>파이썬</span></a
>
</li>
<li>
<a href="" class="tab-button web-basic-btn" data-subject="Web Basic"
><img src="/webBasicLogo.svg" alt="webBasicLogo" class="tab-icon" />
<span>웹 기초</span></a
>
</li>
</ul>
<div class="category-box">
<select
name="category-assignment"
id="category-assignment"
class="category category-assignment"
>
<option value="" selected>과제</option>
</select>
<select
name="category-class"
id="category-class"
class="category category-class"
>
<option value="" selected>반</option>
<option value="1">1-1</option>
<option value="2">1-2</option>
<option value="3">1-3</option>
<option value="4">1-4</option>
</select>
<select
name="category-sort"
id="category-sort"
class="category category-sort"
>
<option value="createdAt" selected>최신순</option>
<option value="likes">인기순</option>
</select>
</div>
</nav>
<main id="main-content">
<div id="post-list-container"></div>
</main>
<div class="pagination">
<button class="prev-page page-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512">
<path
d="M9.4 278.6c-12.5-12.5-12.5-32.8 0-45.3l128-128c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 256c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-128-128z"
/>
</svg>
</button>
<div class="page-list"></div>
<button class="next-page page-button">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512">
<path
d="M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z"
/>
</svg>
</button>
</div>
<footer id="page-footer">
<p>© 2025 Team-Sh4re</p>
</footer>
<script type="module" src="/js/main.js"></script>
<script type="module" src="/js/index.js"></script>
<script type="module" src="/js/category.js"></script>
<script type="module" src="/components/header/header.js"></script>
</body>
</html>