-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.html
More file actions
136 lines (121 loc) · 4.94 KB
/
layout.html
File metadata and controls
136 lines (121 loc) · 4.94 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
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script src="https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js"></script>
<link rel="stylesheet" href="./public/css/bootstrap.min.css">
<title>Geol Diary</title>
</head>
<body class="typewriter">
<style>
@font-face {
font-family: 'DOSMyungjo';
src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_eight@1.0/DOSMyungjo.woff') format('woff');
font-weight: normal;
font-style: normal;
}
.dos-myungjo {
font-family: 'DOSMyungjo';
}
</style>
<div class="header">
<!-- 상단 헤더 -->
<header class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="/" disabled>Geol Diary</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="/">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" id="retrospective" data-retrospective="active">retrospec</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</header>
</div>
<main role="main">
<!-- 내 사진이랑 목차, 소개 영역 -->
<div class="container-fluid">
<div class="row flex-xl-nowrap justify-content-center">
<div class="my-2 col-xl-2 bd-sidebar">
<h1 class="bd-title">Index List</h1>
<div class="collapse bd-links contents" id="contents-list">
<div class="bd-toc-item list-group active" id="list-group">
</div>
</div>
</div>
<div class="col-md-3 col-xl-2 bd-sidebar">
<nav class="collapse bd-links" id="bd-docs-nav" aria-label="Main navigation">
<!-- 내 사진 -->
<div class="card my-2">
<img src="./public/images/profile.jpg"
class="card-img-top"
style="display: block"
alt="...">
<div class="card-body">
<div class="card-title">GEOL</div>
<p class="card-text">Hello, World! </p>
</div>
</div>
<!-- 사이드 목록 -->
<div class="bd-toc-item">
<a class="bd-toc-link" href="/">
Home
</a>
</div>
<!-- <div class="bd-toc-item"> -->
<!-- <a class="bd-toc-link"> -->
<!-- Retrospective -->
<!-- </a> -->
<!-- </div> -->
</nav>
</div>
<!-- 레이아웃 영역 -->
<div id="my" class="d-flex row align-items-center mx-3">
<div class="my-page list-group">
<div class="my-2">
<h1 class="text-center">Welcome to Geol Diary</h1>
</div>
<div class="card w-100">
<div class="card-header">Featured</div>
<div class="card-body">
<p>{<br>
 "name" : "geol",<br>
 "job" : "Developer",<br>
 "birthday": "1994-01-18",<br>
 "country" : "South Korea",<br>
 "city" : "Young-in",<br>
 "stack" : ["JAVA", "C++", "PHP", "MySQL", "HTML", "CSS", "JS", "Vue", "..."],<br>
 "interest": ["Clean Code", "Testing", "Linux", "..."],<br>
 "quote" : "There is nothing good unless you do it. - Erich Kästner"<br>
}</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="contents" class="container my-2">
<h1 class="bd-title">Contents</h1>
<div class="contents dos-myungjo" id="contents-body">
<div class="list-group">
<p>IN-GEOL BAEK</p>
</div>
</div>
</div>
</main>
</body>
</html>