Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 11664d7

Browse files
committed
Revert template changes from master
1 parent 5de386b commit 11664d7

File tree

1 file changed

+12
-17
lines changed

1 file changed

+12
-17
lines changed

src/whats-new.md

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -15,40 +15,35 @@ title: What's new on DevDocs
1515

1616
{% assign grouped_by_year = entries | group_by_exp: "entry", "entry.date | date: '%Y'" %}
1717

18-
{% for year_group in grouped_by_year limit:2 %}
18+
{% for group in grouped_by_year limit:2 %}
1919

20-
{% assign grouped_by_month = year_group.items | group_by_exp: "entry", "entry.date | date: '%B'" %}
21-
## {{ year_group.name }}
22-
23-
{% for month_group in grouped_by_month %}
24-
### {{ month_group.name }}
25-
26-
{% assign grouped_by_date = month_group.items | group_by: "date" %}
27-
28-
{% for date_group in grouped_by_date %}
29-
#### {{ date_group.name }}
20+
## {{ group.name }}
3021

3122
<table>
3223
<thead>
3324
<tr>
3425
<th>Description</th>
3526
<th>Versions</th>
3627
<th>Type</th>
37-
<th>Pull request</th>
28+
<th>Date</th>
3829
</tr>
3930
</thead>
4031
<tbody>
41-
{% for item in date_group.items %}
32+
{% for item in group.items %}
4233
<tr>
4334
<td>{{ item.description | markdownify }}</td>
4435
<td>{{ item.versions }}</td>
4536
<td>{{ item.type }}</td>
46-
<td><a href="{{ item.link }}">{{ item.link | split: "/" | last }}</a></td>
37+
<td>
38+
{%- if item.link -%}
39+
<a href="{{ item.link }}">{{ item.date | date: "%B&nbsp;%e" }}</a>
40+
{%- else -%}
41+
{{ item.date | date: "%B&nbsp;%e" }}
42+
{%- endif -%}
43+
</td>
4744
</tr>
4845
{% endfor %}
4946
</tbody>
5047
</table>
51-
{% endfor %}<!-- date_group -->
52-
{% endfor %}<!-- month_group -->
5348

54-
{% endfor %}<!-- year_group -->
49+
{% endfor %}

0 commit comments

Comments
 (0)