-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 2.07 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
---
layout: default
robots: noindex
---
<ul id="projects-panel" 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
{% if project.gh_user %}
href="https://github.com/{{ project.gh_user }}/{{ project.repo }}" target="_blank"
{% elsif project.link %}
href="{{project.link}}" target="_blank"
{% endif %}
>{{ project.name }}</a></h4>
</div>
<div class="timeline-body">
{{ project.desc | markdownify }}
{% if project.gh_user %}
<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>
{% endif %}
</div>
</li>
{% endfor %}
</ul>