-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmini-repo-info-card.html
24 lines (22 loc) · 1.09 KB
/
mini-repo-info-card.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
{% assign repo = site.github.public_repositories | where: "full_name", site.repository | first %}
<div class="Repo-info">
<a href="{{ site.github.repository_url }}" class="{{ include.class }} tooltipped tooltipped-s" aria-label="Go to repository">
<div class="d-flex flex-row flex-justify-center Header-item">
<div class="mr-2">{% octicon git-branch height: 32 %}</div>
<div>
<div>
{{ site.repository }}
</div>
<div class="d-flex flex-row">
{%- if site.github.latest_release %}
<div class="mr-3">
<span>{% octicon tag height: 12 %} {{ site.github.latest_release.tag_name}}</span>
</div>
{%- endif %}
<div class="mr-3"><span>{% octicon star height: 12 %} {{ repo.stargazers_count }}</span></div>
<div class="mr-0"><span>{% octicon repo-forked height: 12 %} {{ repo.forks_count }}</span></div>
</div>
</div>
</div>
</a>
</div>