1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-24 02:38:15 +04:00
Files
tabler/pages/changelog.html
2020-02-19 00:16:20 +01:00

20 lines
440 B
HTML

---
title: Changelog
page-header: Changelog
menu: changelog
done: true
---
<div class="card card-lg">
<div class="card-body markdown">
{% for page in site.changelog reversed %}
<div class="mb-4">
<div class="mb-2">
<span class="badge bg-blue-lt">{{ page.title }}</span>
<span class="text-muted">{{ page.date | date: '%B %d, %Y' }}</span>
</div>
<div>{{ page.content }}</div>
</div>
{% endfor %}
</div>
</div>