Skip to content
Merged

Devs #95

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 51 additions & 5 deletions _data/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@ coredevs:
avatar: https://avatars2.githubusercontent.com/u/8590583?s=400&v=4
affiliation: Florida State University
gh_handle: jGaboardi
- first: Marynia
last: Kolak
avatar: https://avatars2.githubusercontent.com/u/4277692?s=400&v=4
affiliation: University of Chicago
gh_handle: Makosak
- first: Ran
last: Wei
avatar: https://avatars0.githubusercontent.com/u/7330759?s=400&v=4
Expand All @@ -69,3 +64,54 @@ coredevs:
avatar: https://avatars3.githubusercontent.com/u/8117709?s=400&v=4
affiliation: University of Maryland
gh_handle: tayloroshan
- first: Ziqi
last: Li
avatar: https://avatars1.githubusercontent.com/u/5518908?s=460&v=4
affiliation: Arizona State University
gh_handle: Ziqi-Li
- first: Philip
last: Stephens
avatar: https://avatars3.githubusercontent.com/u/871844?s=400&v=4
affiliation: Arizona State University
gh_handle: pastephens
alumdevs:
- first: Marynia
last: Kolak
avatar: https://avatars2.githubusercontent.com/u/4277692?s=400&v=4
affiliation: University of Chicago
gh_handle: Makosak
- first: Jay
last: Laura
avatar: https://avatars1.githubusercontent.com/u/2105468?s=400&v=4
affiliation: USGS
gh_handle: jlaura
- first: Charles
last: Schmidt
avatar: https://avatars2.githubusercontent.com/u/1403099?s=400&v=4
affiliation: geoscore
gh_handle: schmidtc
- first: Carson
last: Farmer
avatar: https://avatars3.githubusercontent.com/u/1220613?s=400&v=4
affiliation: University of Colorado
gh_handle: carsonfarmer
- first: David C.
last: Folch
avatar: https://avatars3.githubusercontent.com/u/1322332?s=400&v=4
affiliation: Florida State University
gh_handle: dfolch
- first: Myunghwa
last: Hwang
avatar: https://avatars1.githubusercontent.com/u/4752901?s=400&v=4
affiliation: Arizona State University
gh_handle: myunghwa
- first: Matthew
last: Conway
avatar: https://avatars2.githubusercontent.com/u/566958?s=460&v=4
affiliation: Arizona State University
gh_handle: mattwigway
- first: Sizhe
last: Wang
avatar: https://avatars0.githubusercontent.com/u/6888006?s=400&v=4
affiliation: Arizona State University
gh_handle: sa9us
1 change: 1 addition & 0 deletions _data/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
PySAL meta-package:
Project-wide Documentation: https://pysal.readthedocs.io
Contributing to PySAL: https://github.com/pysal/pysal/wiki
Migrating to PySAL 2.0: https://github.com/pysal/pysal/blob/master/MIGRATING.md

lib:
libpysal: https://libpysal.readthedocs.io/en/latest/
Expand Down
4 changes: 4 additions & 0 deletions _data/news.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
- name: gsoc19
date: 2019-03-03
summary: PySAL is participating in Google Summer of Code under the <a href="http://python-gsoc.org/">Python Organization GSOC</a>.

- name: spaghetti 1.2
date: 2019-02-27
summary: Third stable release of <a href="https://pypi.org/project/spaghetti/">spaghetti (1.2)</a>.
Expand Down
16 changes: 15 additions & 1 deletion _includes/team.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<img src="{{site.url}}/assets/globe-model.svg" class="section-icon img-responsive" alt="steering committee icon">
<h3 class="col-sm-12 section-header">Core Developers</h3>
<p class="col-sm-12 support-paragraph">
(in alphabetical order).
(in alphabetical order)
</p>
</div>
</div>
Expand All @@ -20,5 +20,19 @@ <h4 class="card-title">{{member.first}} {{member.last}}</h4>
</div>
{% endfor %}
</div>
<div class="col-md-12 section-content section-center">
<h3 class="col-sm-12 section-header">Alumni Core Developers</h3>
<p class="col-sm-12 support-paragraph">
(in alphabetical order)
</p>
{% assign sorted = site.data.core.alumdevs | sort: "last" %}
{% for member in sorted %}
<div class="col-md-4 material">
<img class="core-member-photo" alt="{{member.first}} {{member.last}}'s avatar picture" src='{{member.avatar}}' />
<h4 class="card-title">{{member.first}} {{member.last}}</h4>
<p class="card-info">{{member.affiliation}}<br><a href="https://github.com/{{member.gh_handle}}" target="_blank"><em>@{{member.gh_handle}}</em></a> on GitHub</p>
</div>
{% endfor %}
</div>

</div>