Skip to content

Commit abeab0e

Browse files
committed
Fix: newest packages
1 parent fe978b6 commit abeab0e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

_pages/about-peer-review.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ classes:
6767
We value our volunteer editors. Learn more about what editors do and how we
6868
select them here.
6969

70-
{% assign editors = site.data.contributors | where: 'editorial-board', true %}
70+
{% assign editors = site.data.contributors | where: 'editorial_board', true %}
7171

7272
<div class="grid">
7373
{% for aperson in editors %}
@@ -146,11 +146,11 @@ are, in places, less stringent than those of pyOpenSci.
146146

147147
## Recently Accepted Python Packages
148148

149+
{% assign packages_sorted = site.data.packages | sort_natural: 'date_accepted' | reverse %}
150+
149151
<div class="grid">
150-
{% for apackage in site.data.packages %}
151-
{% if apackage.highlight %}
152-
{% include package-grid.html %}
153-
{% endif %}
152+
{% for apackage in packages_sorted limit:4 %}
153+
{% include package-grid.html %}
154154
{% endfor %}
155155
</div>
156156

0 commit comments

Comments
 (0)