forked from PandelisZ/workshop-guestbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
ยท83 lines (70 loc) ยท 3.28 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
---
title: ์ฉ๊ฐํ ์น๊ตฌ๋ค ๋งด๋ฒ๋ฅผ ์๊ฐํฉ๋๋ค
---
<!DOCTYPE html>
<html>
<head>
<meta property="og:url" content="https://brave-people.github.io/brave-member/">
<meta property="og:title" content="์ฉ๊ฐํ ์น๊ตฌ๋ค ๋งด๋ฒ">
<meta property="og:type" content="website">
<meta property="og:image" content="https://github.com/brave-people/brave-member/raw/master/images/member_2.png">
<meta property="og:description" content="์ฉ๊ฐํ ์น๊ตฌ๋ค์ ์๊ฐํฉ๋๋ค!">
<link rel="stylesheet" type="text/css" href="css/home.css"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.9/css/all.css" integrity="sha384-5SOiIsAziJl6AWe0HWRKTXlfcSHKmYV4RBF18PPJ173Kzn7jzMyFuTtk8JA7QQG1" crossorigin="anonymous">
<link rel="shortcut icon" href="images/favicon.ico"/>
<title>{{ page.title }}</title>
</head>
<body>
<section id="guestbook">
<div class="container">
<div class="section-header">
<h1 role="section-heading">{{site.workshop.name}} ๐ฆธโโ๐ฆธโโ "์ฉ๊ฐํ ์น๊ตฌ๋ค" ๋งด๋ฒ๋ฅผ ์๊ฐํฉ๋๋ค.</h1>
<h3><a href="{{site.workshop.github}}">์ฉ๊ฐํ ์น๊ตฌ๋ค ๊ฐ์
!</a></h3>
</div>
<div class="guestbook-content">
{% for guest in site.guestbook %}
<div class="guestbook-item">
<div class="guestbook-profile">
<img src="{{guest.image}}" alt="{{guest.name}}"/>
<span class="emoji">{{guest.emoji}}</span>
</div>
<h2>{{guest.name}}</h2>
<h4>{{guest.message}}</h4>
<hr/>
<div class="guestbook-social">
{% if guest.twitter %}
<a href="https://twitter.com/{{guest.twitter}}" alt="Twitter"><i class="fab fa-twitter"></i></a>
{% endif %}
{% if guest.facebook %}
<a href="https://facebook.com/{{guest.facebook}}" alt="Facebook"><i class="fab fa-facebook"></i></a>
{% endif %}
{% if guest.github %}
<a href="https://github.com/{{guest.github}}" alt="GitHub"><i class="fab fa-github"></i></a>
{% endif %}
{% if guest.blog %}
<a href="{{guest.blog}}" alt="Website"><i class="fas fa-globe"></i></a>
{% endif %}
{% if guest.linkedin %}
<a href="{{guest.linkedin}}" alt="Website"><i class="fab fa-linkedin-in"></i></a>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
</section>
<!--
<section class="join" id="join-large">
<div class="container">
<div class="join-content">
<h3 role="section-heading">Sign the workshop guestbook!</h3>
<div class="flag">
<img src="images/flag.png" alt="">
</div>
<a href="{{site.workshop.github}}" class="button button-white">Sign the guestbook!</a>
</div>
</div>
</section>
-->
</body>
</html>