-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (64 loc) · 1.77 KB
/
index.html
File metadata and controls
65 lines (64 loc) · 1.77 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
---
layout: default
---
<section class="page-header">
<div class="section__content">
<div class="header-content">
<div class="header-content-left">
<div class="header-logo" style="background-image:url(assets/images/devlucky-logo.png)"></div>
<div class="header-title">{{site.title}}</div>
</div>
<div class="header-content-right">
<div class="site-description">{{site.description}}</div>
<ul class="social-links">
<li>
<a href="//twitter.com/{{site.twitter_username}}" target="_blank">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="//github.com/{{site.github_username}}" target="_blank">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="//medium.com/@{{site.medium_username}}" target="_blank">
<i class="fa fa-medium" aria-hidden="true"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="page-content">
<h1>Projects</h1>
<div class="section__content">
<ul>
{% for project in site.data.projects %}
<li class="project">
<div class="project__content">
<header style="background-image: url({{site.images-path}}{{project.header_img}});">
<div class="project-logo">
<img src="https://sdl-stickershop.line.naver.jp/products/0/0/1/1087538/LINEStorePC/main.png?__=20150924" alt="">
<!-- <img src="{{site.images-path}}{{project.logo}}" alt="{{project.name}}"> -->
</div>
</header>
<div class="project-content">
<div class="project-name">
{{project.name}}
</div>
<div class="project-description">
{{project.description}}
</div>
<a href="{{project.link}}" class="visit-project">
Visit
</a>
</div>
</div>
</li>
{% endfor %}
</ul>
</div>
</section>
{% include team.html %}