1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-22 13:31:50 +04:00

changelog

This commit is contained in:
codecalm
2021-02-17 22:56:26 +01:00
parent 6cece1ea36
commit f6c235e38b
3 changed files with 21 additions and 5 deletions
-1
View File
@@ -63,7 +63,6 @@ defaults:
path: "*.md"
values:
layout: markdown
- scope:
type: "pages"
values:
+6
View File
@@ -0,0 +1,6 @@
- version: 1.0.0-beta
date: 2021-02-17
description: Initial release of Tabler v1.0! Lots more coming soon though 😁
changes:
- Updated to Bootstrap v5.0.0-beta2
- Updated other dependencies.
+15 -4
View File
@@ -4,12 +4,23 @@ menu: docs.changelog
layout: docs
---
{% for page in site.changelog reversed %}
{% for version in site.data.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>
<span class="badge bg-blue-lt">{{ version.version }}</span>
<span class="text-muted">{{ version.date | date: '%B %d, %Y' }}</span>
</div>
<div>{{ page.content }}</div>
{% if version.description %}
<p>{{ version.description }}</p>
{% endif %}
{% if version.changes %}
<ul>
{% for change in version.changes %}
<li>{{ change }}</li>
{% endfor %}
</ul>
{% endif %}
</div>
{% endfor %}