Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

Commit 9d1d904

Browse files
committed
add bug fix and contribution specific pages
1 parent 8e0b2dc commit 9d1d904

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

_includes/postlist.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@
44
}
55
</style>
66

7-
{% if include.filter-by == "category" %}
8-
{% assign group = site.categories %}
7+
{% assign group = site.categories %}
8+
9+
10+
{% if include.source and include.source != "" and include.source != nil %}
11+
12+
{% assign postlist = group[include.source] %}
13+
{% include postshowcase.html posts=postlist %}
14+
15+
{% else %}
16+
917
{% for item in group %}
1018
{% assign item_name = item | first %}
1119

bugfixes.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: page
3+
title: Bug Fixes
4+
permalink: /bugfixes/
5+
---
6+
7+
{% include postlist.html filter-by="category" source="Bug Fix" %}

contributions.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: page
3+
title: Contributions
4+
permalink: /contributions/
5+
---
6+
7+
{% include postlist.html filter-by="category" source="Contribution" %}

0 commit comments

Comments
 (0)