-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
83 lines (78 loc) · 3.35 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>J2KB</title>
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet" />
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous">
</script>
<link href="https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote-lite.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote-lite.min.js"></script>
</head>
<body class="bg-black">
<!--History-->
<div class="main__wrapper">
<!--Link-->
<nav class="navbar border-b border-gray-500 flex p-4 m-2 mb-0 items-center justify-between h-12 text-white">
<div class="navbar__logo">
<span class="logo text-xl font-bold">J2KB</span>
</div>
<ul class="navbar__menu flex space-x-4">
<li class="history" route="/home">Home</li>
<li class="history" route="/about">About</li>
<li class="history" route="/project">Project</li>
<li class="history hide" route="/edit" id="edit">Add</li>
<li class="history" route="/join" id="join">Join</li>
<li class="history" route="/login" id="login">Login</li>
</ul>
</nav>
<header class="mb-12">
<div class="header-title">
<img src="/img/good.gif" alt="thumb">
</div>
<div class="header-content"></div>
</header>
<!--Content-->
<div id="app-content"></div>
<!-- modal -->
<div class="modal">
<div class="modal-content">
<div class="modal-header">
<h1>j2kb 동아리소개 / codev-21</h1>
<p>
<span class="close">X</span>
</p>
</div>
<div class="modal-body">
<table>
<tbody>
<tr>
<td class="modal-body-img">
<div
style="background: url(/img/codev.jpg); background-repeat: no-repeat; background-position: center; background-size: contain;">
</div>
</td>
</tr>
<tr>
<td class="modal-body-des">
j2kb 동아리를 소개하고 팀별 프로젝트 및 소스를 공유합니다.
<br><br>일정 기간동안 프로젝트 투표를 진행하며, j2kb 멤버들만 참여가 가능합니다.일정 기간동안 프로젝트 투표를 진행하며, j2kb 멤버들만 참여가
가능합니다.일정 기간동안 프로젝트 투표를 진행하며, j2kb 멤버들만 참여가 가능합니다.일정 기간동안 프로젝트 투표를 진행하며, j2kb 멤버들만 참여가
가능합니다.
<br><br>본인 팀을 제외하고 투표할 수 있고, 총 세 개의 투표권이 주어집니다.본인 팀을 제외하고 투표할 수 있고, 총
세 개의 투표권이 주어집니다.
<br><br>소스코드 github, 연락처 @소스코드 github, 연락처 @소스코드 github, 연락처 @소스코드 github, 연락처 @
</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button class="modal-footer-btn">VOTE</button>
</div>
</div>
</div>
</div>
</body>
</html>