-
Notifications
You must be signed in to change notification settings - Fork 139
/
index.html
46 lines (40 loc) · 1.81 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
---
layout: default
robots: noindex
---
<!--<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">
{% if project.desc %}
{{ project.desc | markdownify }}
{% else %}
<div repotext="{{ project.repo }}">
<span class="desc"></div>
</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>
</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>-->