mirror of
https://github.com/tabler/tabler.git
synced 2026-07-26 04:54:40 +04:00
39 lines
1.7 KiB
HTML
39 lines
1.7 KiB
HTML
{% assign limit = include.limit | default: 8 %}
|
|
{% assign offset = include.offset | default: 0 %}
|
|
{% assign hoverable = include.hoverable | default: false %}
|
|
{% assign checked-ids = include.checked-ids | default: '3,5,6' | extract: ',' %}
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h3 class="card-title">{{ include.title | default: 'Last commits' }}</h3>
|
|
</div>
|
|
<div class="list list-row{% if hoverable %} list-hoverable{% endif %}">
|
|
{% assign colors = 'green,red,yellow,x,x' | split: ',' %}
|
|
{% for person in site.data.people limit: limit offset: offset %}
|
|
{% assign color = forloop.index | plus: 5 | random_item: colors %}
|
|
<div class="list-item">
|
|
{% if include.checkbox %}
|
|
<div><input type="checkbox" class="form-check-input"{% if checked-ids contains forloop.index %} checked{% endif %}></div>
|
|
{% else %}
|
|
<div><span class="badge{% if color != 'x' %} bg-{{ color }}{% endif %}"></span></div>
|
|
{% endif %}
|
|
<a href="#">
|
|
{% include ui/avatar.html person=person %}
|
|
</a>
|
|
<div class="text-truncate">
|
|
<a href="#" class="text-body d-block">{{ person.full_name }}</a>
|
|
{% assign i = forloop.index | plus: offset %}
|
|
<small class="d-block text-muted text-truncate mt-n1">{{ site.data.commits[i].description }}</small>
|
|
</div>
|
|
{% if hoverable %}
|
|
{% if checked-ids contains forloop.index %}
|
|
{% assign star-color = 'text-yellow' %}
|
|
{% else %}
|
|
{% assign star-color = 'text-muted' %}
|
|
{% endif %}
|
|
<a href="#" class="list-item-actions{% if checked-ids contains forloop.index %} show{% endif %}">{% include ui/icon.html icon="star" class=star-color %}</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|