File tree Expand file tree Collapse file tree 2 files changed +12
-14
lines changed Expand file tree Collapse file tree 2 files changed +12
-14
lines changed Original file line number Diff line number Diff line change @@ -83,25 +83,19 @@ pyOpenSci is beginning to create its DEIA council. This council consists of lead
83
83
{: .clearall }
84
84
85
85
{% assign ppl_sorted = site.data.contributors | reverse %}
86
+ {% assign total_people = ppl_sorted | size %}
86
87
87
- <!--
88
- <div class="entries-grid">
89
- {% for aperson in ppl_sorted %}
90
- {% unless aperson.board %}
91
- {% unless aperson.advisory %}
92
- {% include people-grid.html %}
93
- {% endunless %}
94
- {% endunless %}
95
- {% endfor %}
96
- </div> -->
88
+ pyOpenSci has a diverse and vibrant community of pythonistas! To date,
89
+ ** {{ total_people }}** wonderful people have contributed to pyOpenSci.
97
90
98
91
<p ><input type =" text " id =" quicksearch " placeholder =" Search " /></p >
99
92
100
93
<div id =" filters " class =" button-group " >
101
94
<button class =" button is-checked " data-filter =" * " >Show All</button >
102
95
<button class =" button " data-filter =" .leadership " >Leadership/Advisory</button >
103
- <button class =" button " data-filter =" .editor " >Editorial Team</button >
104
- <button class =" button " data-filter =" .peer-review " >Peer Review</button >
96
+ <button class =" button " data-filter =" .editor " >Editors / Editorial Team</button >
97
+ <button class =" button " data-filter =" .reviewer " >Reviewers</button >
98
+ <button class =" button " data-filter =" .maintainer " >Maintainers</button >
105
99
<button class =" button " data-filter =" .peer-review-guide " >Peer Review Guide</button >
106
100
<button class =" button " data-filter =" .package-guide " >Packaging Guide</button >
107
101
<button class =" button " data-filter =" .metrics-contrib " >Metrics</button >
Original file line number Diff line number Diff line change @@ -17,8 +17,14 @@ redirect_from:
17
17
18
18
{% include feature_row id="intro" type="center" %}
19
19
20
+ {% assign packages_sorted = site.data.packages | sort_natural: 'date_accepted' | reverse %}
21
+ {% assign total_packages = packages_sorted | size %}
22
+
20
23
## Explore our accepted scientific Python open source packages
21
24
25
+ To date, {{ total_packages }} packages have been accepted into the pyOpenSci
26
+ ecosystem. [ Click here to check out packages that are currently under review.] ( https://github.com/pyOpenSci/software-submission/issues )
27
+
22
28
<p ><input type =" text " id =" quicksearch " placeholder =" Search " /></p >
23
29
24
30
<div id =" filters " class =" button-group " >
@@ -36,8 +42,6 @@ redirect_from:
36
42
<button class="button" data-filter=".metal:not(.transition)">metal but not transition</button> -->
37
43
</div >
38
44
39
- {% assign packages_sorted = site.data.packages | sort_natural: 'date_accepted' | reverse %}
40
-
41
45
<div class =" grid-isotope " >
42
46
{% for apackage in packages_sorted %}
43
47
{% include package-grid.html %}
You can’t perform that action at this time.
0 commit comments