about.html
4.99 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
137
138
139
140
141
142
143
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<title>CVpage</title>
<!-- Bootstrap core CSS -->
<link href="{{url_for('static',filename='css/bootstrap.min.css')}}" rel="stylesheet">
<link href="{{url_for('static',filename='css/about.css')}}" rel="stylesheet">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<!-- Custom styles for this template -->
</head>
<body>
{%include 'navbar.html'%}
<div class="sub" style="z-index: 9999999;">
CopyWrite KHJ<br>
<br>
<br>
<br>
<br>
<br>
<br>
</div>
<div class=belowHeader>
<main role="main">
<div class="album py-5">
<div class="container">
<div class="row">
<!-- project card start-->
{%if g.user%}
<div class="col-md-4">
<a class="card mb-4 nooutline" href="{{url_for('about.add')}}">
<img src="{{url_for('static',filename='img/plus.png')}}" onmouseenter=zoomIn(event) onmouseleave=zoomOut(event)>
</img>
</a>
<div class="card-body">
<p class="card-text">Project Name</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<button type="button" class="btn btn-sm btn-outline-secondary">btn</button>
</div>
<small class="text-muted">date</small>
</div>
</div>
</div>
{%endif%}
{%if w_list%}
{%for work in w_list%}
<div class="col-md-4">
<a class="card mb-4 nooutline" href="{{url_for('detail.detail',project_id=work.id)}}">
<div class='box' onmouseenter=zoomIn(event) onmouseleave=zoomOut(event) displacementImage="{{url_for('static',filename='img/distortion.jpg')}}">
<img class=front src="{{url_for('static',filename='img/'+work.pictureName+'1.jpg')}}" width=100% height=225 alt="" onmouseenter=zoomIn(event) onmouseleave=zoomOut(event)>
<img class=back src="{{url_for('static',filename='img/'+work.pictureName+'2.jpg')}}" width=100% height=225 alt="" onmouseenter=zoomIn(event) onmouseleave=zoomOut(event)>
</div>
</a>
<div class="card-body">
<p class="card-text">{{work.projectName}}</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<button type="button" onclick="location.href='{{work.gitAddress}}'" class="btn btn-sm btn-outline-secondary">git</button>
<a href="{{url_for('detail.video',project_id=work.id)}}">
<button type="button" class="btn btn-sm btn-outline-secondary btnvideo">video</button>
</a>
{%if g.user%}
<a href="{{url_for('about.delete',project_id=work.id)}}">
<button type="button" class="btn btn-sm btn-outline-secondary btnvideo">delete</button>
</a>
<a href="{{url_for('about.modify',project_id=work.id)}}">
<button type="button" class="btn btn-sm btn-outline-secondary btnvideo">modify</button>
</a>
{%endif%}
</div>
<small class="text-muted">{{work.create_date|datetime}}</small>
</div>
</div>
</div>
{%endfor%}
{%endif%}
<!-- project card end-->
</div>
</div>
</div>
</main>
<br><br><br><br><br><br><br>
<footer class="text-muted" style="margin-bottom:30rem">
<div class="container">
<p class="float-right">
<a href="#" class="textblack">Back to top</a>
</p>
<p>
<ul>
<h2 id=aboutme>
About Me
</h2>
<br>
<li>
HyungJin Kweon
</li>
<li>
KyungHee Univ.
</li>
<li>
email : intimate0305@khu.ac.kr
</li>
<li>
I'm junior programmer interested in Computer Vision.
</li>
</ul>
</p>
</footer>
</div>
<script src="{{url_for('static',filename='js/jquery-3.5.1.min.js')}}"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r120/three.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.5.1/gsap.min.js"></script>
<script src="{{url_for('static',filename='js/hover-effect.umd.js')}}"></script>
<script src="{{url_for('static',filename='js/about.js')}}"></script>
<script src="{{url_for('static',filename='js/custom.js')}}"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="{{url_for('static',filename='js/bootstrap.bundle.min.js')}}"></script>
</body>
</html>