forked from tzuehlke/jekyll-uno-timeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (65 loc) · 2.94 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
---
layout: default
robots: noindex
---
<div class="main-post-list">
<ul class="timeline" id="projects-section">
{% for project in site.data.projects %}
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-me" src="{{ project.img | prepend: site.baseurl }}" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4><a href="https://github.com/{{ project.gh_user }}/{{ project.repo }}" target="_blank">{{ project.name }}</a></h4>
</div>
<div class="timeline-body">
{% if project.desc %}
{{ project.desc | markdownify }}
{% else %}
<div repotext="{{ project.repo }}">
<span class="desc"></span>
</div>
{% endif %}
<div user="{{ project.gh_user }}" repo="{{ project.repo }}" class="ghbtn" style="margin-top: 10px;">
<a target="_blank" href="https://github.com/{{ project.gh_user }}/{{ project.repo }}/stargazers"><i class="fa fa-star"></i><span class="star"> ...</span></a>  
<a target="_blank" href="https://github.com/{{ project.gh_user }}/{{ project.repo }}/network"><i class="fa fa-code-fork"></i><span class="fork"> ...</span></a>  
<a target="_blank" href="https://github.com/{{ project.gh_user }}/{{ project.repo }}/watchers"><i class="far fa-eye"></i><span class="watchers"> ...</span></a>
<div style="height: 10px;"></div>
</div>
</div>
</div>
</li>
{% endfor %}
</ul>
<ul class="experience-timeline" id="experience-section">
{% for experience in site.data.experience %}
<li class="experience-item">
<div class="experience-image">
<a href="{{ experience.link }}" target="_blank">
<img class="experience-img" src="{{ experience.img | prepend: site.baseurl }}" alt="{{ experience.company }}" style="height: 120px; width: 160px; object-fit: contain">
</a>
</div>
<div class="experience-details">
<h4 class="experience-company">{{ experience.company }}</h4>
<h5 class="experience-title">{{ experience.title }}</h5>
<p class="experience-period">{{ experience.period }}</p>
<div class="experience-desc">
<ul>
{% for exp in experience.desc %}
<li>{{exp.item}}</li>
{% endfor %}
</ul>
</div>
<div class="experience-technologies">
{% for tech in experience.technologies %}
<a href="{{ tech.link }}" target="_blank">
<img class="experience-tech-icon" src="{{ tech.icon | prepend: site.baseurl }}" alt="{{ tech.name }}">
</a>
{% endfor %}
</div>
</div>
</li>
{% endfor %}
</ul>
</div>