development-activity.html 697 字节
Newer Older
C
codecalm 已提交
1
<div class="card">
C
codecalm 已提交
2
	{% include ui/chart.html chart-id="development-activity" height=10 class="mt-4" %}
C
codecalm 已提交
3

C
codecalm 已提交
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
	<div class="table-responsive">
		<table class="table card-table table-vcenter">
			<thead>
			<tr>
				<th>User</th>
				<th>Commit</th>
				<th>Date</th>
			</tr>
			</thead>
			<tbody>
			{% for commit in site.data.commits limit: 5 %}
			<tr>
				<td class="w-1">
					{% include ui/avatar.html person-id=forloop.index %}
				</td>
				<td class="td-truncate">
					<div class="text-truncate">
						{{ commit.description }}
					</div>
				</td>
				<td class="text-nowrap text-muted">{{ commit.date | date_to_string }}</td>
			</tr>
			{% endfor %}
			</tbody>
		</table>
	</div>
C
codecalm 已提交
30 31
</div>