-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (34 loc) · 1.66 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
---
layout: default
robots:
---
<!--<div class="main-post-list">-->
<ul class="timeline">
{% 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">
{{ project.desc | markdownify }}
<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 target="_blank" href="https://github.com/{{ project.gh_user }}/{{ project.repo }}/watchers">
<div style="height: 10px;"></div>
</div>
</div>
</li>
{% endfor %}
<!--
<li class="timeline-inverted">
<div class="timeline-image">
<img class="user-image" src="{{site.baseurl}}{{ site.timeline-img }}" alt="">
</div>
</li> -->
</ul>
<!--</div>-->