-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (76 loc) · 3.25 KB
/
Copy pathindex.html
File metadata and controls
91 lines (76 loc) · 3.25 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Blog</title>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css">
<!-- hightlight.js cdn -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/python.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css">
<!-- // hightlight.js cdn -->
<style>
@keyframes slideDown {
from {
transition: all 1s;
height: 0px;
opacity: 0;
}
to {
opacity: 1;
height: 60px;
}
}
</style>
<!-- tailwind css -->
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 font-sans w-full">
<header class="bg-white shadow">
<nav class="container mx-auto p-6 flex justify-between items-center">
<!-- 블로그 제목 영역 -->
<h1 id="blog-title" class="text-3xl font-bold text-gray-900">GitHub Blog</h1>
<!-- // 블로그 제목 영역 -->
<!-- 메뉴 영역 -->
<div class="md:hidden">
<button class="pt-3" id="menuButton">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 5.25h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5" />
</svg>
</button>
</div>
<div id="menu" class="hidden md:flex items-center">
<!-- 메뉴 아이템들 -->
</div>
<!-- // 메뉴 영역 -->
</nav>
<!-- 모바일에서 메뉴 영역이 보이도록 하는 영역 -->
<div id="mobileMenu" class="md:hidden"></div>
<!-- // 모바일에서 메뉴 영역이 보이도록 하는 영역 -->
</header>
<main class="container mx-auto p-4 md:p-[3rem] md:pl-[12rem] md:pr-[12rem]">
<!-- 블로그 포스트 리스트 영역 -->
<div id="blog-posts" class="grid md:grid-cols-2 lg:grid-cols-3 gap-6"></div>
<!-- // 블로그 포스트 리스트 영역-->
<!-- contents 영역 -->
<div id="contents" class="mt-6 grid-cols-3"></div>
<!-- // contents 영역-->
</main>
<!-- utils -->
<script src="js/utils.js"></script>
<!-- style -->
<script src="style/globalStyle.js"></script>
<script src="style/blogContentsStyle.js"></script>
<!-- mobile menu toggle -->
<script src="js/mobileMenuToggle.js"></script>
<!-- convert ipynb to html -->
<script src="js/convertIpynbToHtml.js"></script>
<!-- lender -->
<script src="config.js"></script>
<script src="js/URLparsing.js"></script>
<script src="js/initData.js"></script>
<script src="js/render.js"></script>
</body>
</html>