1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-30 15:04:38 +04:00

tabler v1

This commit is contained in:
chomik
2019-03-12 22:09:15 +01:00
parent 79f7d92872
commit ab3aec2eeb
3320 changed files with 148049 additions and 207078 deletions
+11
View File
@@ -0,0 +1,11 @@
{% assign person-id = include.person-id | default: 0 %}
{% assign person = site.data.people[person-id] %}
<a class="card card-link" href="#">
<div class="card-body">
<div class="float-{% if include.right %}right{% else %}left mr-3{% endif %}">
{% include ui/avatar.html person=person %}
</div>
<div class="card-title m-0">{{ person.full_name }}</div>
<div class="text-muted">{{ person.job_title }}</div>
</div>
</a>