Skip to content

Commit d1e0216

Browse files
committed
show changelog excerpt on changelog page
1 parent fa237ff commit d1e0216

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

_includes/pages/changelogs.html

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{% assign introduction = site.data[page.lang].translation.changelogs.intro %}
22
{% assign title = site.data[page.lang].translation.changelogs.title %}
3+
{% assign changelogs = site.changelogs | reverse %}
34

45
{% include hero-text-round-dark.html title=title intro=introduction %}
56

@@ -9,16 +10,23 @@
910
<table class="table">
1011
<thead>
1112
<tr>
12-
<th style="max-width: 200px">Date</th>
13+
<th style="min-width: 140px; max-width: 200px">Date</th>
1314
<th>Title</th>
1415
</tr>
1516
</thead>
1617
<tbody>
17-
{% assign changelogs = site.changelogs | reverse %}
1818
{% for changelog in changelogs %}
1919
<tr>
2020
<td style="max-width: 200px">{{ changelog.date | date_to_string }}</td>
21-
<td><a href="{{ changelog.url }}">{{ changelog.title }}</a></td>
21+
<td>
22+
<a href="{{ changelog.url }}" class="text-decoration-none">
23+
{%- if changelog.intro != nil %}
24+
{{ changelog.intro|strip_html }}
25+
{% else %}
26+
{{ changelog.title }}
27+
{% endif -%}
28+
</a>
29+
</td>
2230
</tr>
2331
{% endfor %}
2432
</tbody>

collections/_changelogs/2025-06-15-cloud-update-121.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Cloud-Update 121"
33
date: "2025-06-15 12:00:00 +0200"
4+
intro: "Configurable CSV/XLSX export templates, keyboard improvements for time- and duration-input, API to create absences, new API docs layout"
45
---
56

67
**Improvements**

collections/_changelogs/2025-08-09-cloud-update-122.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Cloud-Update 122"
33
date: "2025-08-09 12:00:00 +0200"
4+
intro: "Break times is now in beta, Audit-Logs support Tasks and Expenses, Kiosk can display working-time summary"
45
---
56

67
Enjoy your summer ☀️ After a few weeks off, we are now back full-time.

collections/_changelogs/2025-09-28-cloud-update-123.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Cloud-Update 123"
33
date: "2025-09-28 10:00:00 +0200"
4+
intro: "Configurable PDF exports allow you to customize client reporting to your needs"
45
---
56

67
Each update includes many small improvements we don’t list here. If you notice any issue, feel free to reach out via email.

0 commit comments

Comments
 (0)