forked from devncode/first-contributions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (31 loc) · 1.14 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
---
# Feel free to add content and custom Front Matter to this file
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: default
---
<div class="container">
<div class="row">
<div class="col-sm mb-4 text-center">
<strong class="text-orange">🎉 {{ site.data.contributions.devs | size }} developers who did first time contribution in this open source project 🎉</strong>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
{% for dev in site.data.contributions.devs %}
<div class="col-sm-2 mb-4">
<div class="card h-100">
<a href="#"><img class="card-img-top" src="{{ dev.avatar }}" onerror="this.onerror=null;this.src='https://ui-avatars.com/api/?name={{ dev.name }}'" alt=""></a>
<div class="card-body">
<h5 class="card-title">
<p class="developer-name">{{ dev.name }}</p>
</h5>
<p class="card-text">
<a href="{{ dev.github_url }}"><i class="fa fa-github fa-2x links-hover"></i></a>
</p>
</div>
</div>
</div>
{% endfor %}
</div>
</div>