forked from PandelisZ/workshop-guestbook
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
Β·68 lines (64 loc) Β· 2.7 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
---
title: 2023 μ€μΉμ λ κ°μ¬νλ§λ
---
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/home.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.0.0/css/all.css"
integrity="sha384-abcdefghijklmnopqrstuvwxyz1234567890"
crossorigin="anonymous">
<link rel="shortcut icon" href="images/logo_inha.png" />
<title>{{ page.title }}</title>
</head>
<body>
<section id="guestbook">
<div class="container">
<div class="section-header" style="text-align: center">
<h1 role="section-heading">{{ site.workshop.name }} 2023 λ―Έλμ΅ν©λν μ€μΉμ λ </h1>
<h3><img src="images/logo_inha.png" height="30" width="30" alt="logo_inha"
style="vertical-align: middle">
<span>μΈνλνκ΅ κ΅μλλ€, κ°μ¬ν©λλ€ π</span></a></h3>
</div>
<div class="guestbook-content">
{% for professor in site.data.professors %}
<div class="guestbook-item">
<div class="guestbook-profile">
<img src="{{ professor.image }}" alt="{{ professor.name }}" width="200" height="200"
style="margin-bottom: 30px;" />
</div>
<a href="{{ professor.link }}" class="button button-black"
style="font-size: larger; font-weight: bold;">{{ professor.name }}</a>
<h4 style="margin-top: 30px; font-weight: bold;">{{ professor.department }}</h4>
</div>
{% endfor %}
</div>
</div>
</section>
<section class="join" id="join-large">
<div class="container">
<div class="join-content">
<div class="link">
<a href="https://forms.gle/XATFhYfbGavD2nsW9" class="button button-white">π2023 μ€μΉμ λ κ°μ¬ νλ§λ μμ±νλ¬ κ°κΈ°!</a>
</div>
<br><br><br>
<h5 role="section-heading">Β©2023. Inha University Future Convergence Student Council All rights
reserved.<br>
This site is not associated with Inha University.<br><br>
</h5>
<h6>
*creator*<br>
21μμ΅ Celiena Heejae Jeong<br>
21μμ΅ Donghwi Cho<br>
21μμ΅ Hameast Donggyun Ham
</h6>
<br>
<h6>
*contributor*<br>
23μμ΅ Jongyoung Lee<br>
</h6>
</div>
</div>
</section>
</body>
</html>