Skip to content

Commit

Permalink
Merge pull request #90 from jbampton/add-jekyll-avatar
Browse files Browse the repository at this point in the history
Add Jekyll Avatar
  • Loading branch information
matz authored Apr 11, 2021
2 parents 04613e4 + df1fb95 commit 03e8262
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 59 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins

group :jekyll_plugins do
gem 'jekyll-avatar'
gem 'jekyll-feed'
gem 'jekyll-sitemap'
end
Expand Down
1 change: 1 addition & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ PLATFORMS
DEPENDENCIES
git
github-pages
jekyll-avatar
jekyll-feed
jekyll-sitemap
mgem
Expand Down
3 changes: 2 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ markdown: kramdown
highlighter: rouge
url: https://mruby.org
repository: https://github.com/mruby/mruby.github.io
include: _index.html
include: ['_index.html']
plugins:
- jekyll-avatar
- jekyll-feed
- jekyll-sitemap
exclude:
Expand Down
30 changes: 30 additions & 0 deletions _data/team.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
- name: Yukihiro "Matz" Matsumoto
github: matz
- name: Daniel Bovensiepen
github: bovi
- name: Carson McDonald
github: carsonmcdonald
- name: Goro Kikuchi
github: gorogit
- name: h2so5
github: h2so5
- name: Hir0
github: Hir0
- name: Terence
github: Leehone
- name: Kazuaki Tanaka
github: kaz0505
- name: MATSUMOTO, Ryosuke
github: matsumotory
- name: Ralph Desir
github: Mav7
- name: Hiroshi Mimaki
github: mimaki
- name: Jun Hiroe
github: suzukaze
- name: Hidetaka Takano
github: TJ-Hidetaka-Takano
- name: Zachary Scott
github: zzak
- name: Tomoyuki Sahara
github: tsahara
68 changes: 10 additions & 58 deletions team/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,67 +9,19 @@ <h2><a href="https://github.com/orgs/mruby/people">Team</a></h2>
<tr>
<th>Name</th>
<th>GitHub</th>
<th>Avatar</th>
</tr>
{%- for member in site.data.team -%}
<tr>
<td>Yukihiro "Matz" Matsumoto</td>
<td><a href="https://github.com/matz">matz</a></td>
</tr>
<tr>
<td>Daniel Bovensiepen</td>
<td><a href="https://github.com/bovi">bovi</a></td>
</tr>
<tr>
<td>Carson McDonald</td>
<td><a href="https://github.com/carsonmcdonald">carsonmcdonald</a></td>
</tr>
<tr>
<td>Goro Kikuchi</td>
<td><a href="https://github.com/gorogit">gorogit</a></td>
</tr>
<tr>
<td>h2so5</td>
<td><a href="https://github.com/h2so5">h2so5</a></td>
</tr>
<tr>
<td>Hir0</td>
<td><a href="https://github.com/Hir0">Hir0</a></td>
</tr>
<tr>
<td>Terence Lee</td>
<td><a href="https://github.com/hone">hone</a></td>
</tr>
<tr>
<td>Kazuaki Tanaka</td>
<td><a href="https://github.com/kaz0505">kaz0505</a></td>
</tr>
<tr>
<td>MATSUMOTO, Ryosuke</td>
<td><a href="https://github.com/matsumotory">matsumotory</a></td>
</tr>
<tr>
<td>Ralph Desir</td>
<td><a href="https://github.com/Mav7">Mav7</a></td>
</tr>
<tr>
<td>Hiroshi Mimaki</td>
<td><a href="https://github.com/mimaki">mimaki</a></td>
</tr>
<tr>
<td>Jun Hiroe</td>
<td><a href="https://github.com/suzukaze">suzukaze</a></td>
</tr>
<tr>
<td>Hidetaka Takano</td>
<td><a href="https://github.com/TJ-Hidetaka-Takano">TJ-Hidetaka-Takano</a></td>
</tr>
<tr>
<td>Zachary Scott</td>
<td><a href="https://github.com/zzak">zzak</a></td>
</tr>
<tr>
<td>Tomoyuki Sahara</td>
<td><a href="https://github.com/tsahara">tsahara</a></td>
<td>{{ member.name }}</td>
<td><a href="https://github.com/{{ member.github }}">{{ member.github }}</a></td>
<td>
<a href="https://github.com/{{ member.github}}">
{% avatar user=member.github size=50 %}
</a>
</td>
</tr>
{% endfor %}
</table>

<h2><a href="https://github.com/mruby/mruby/blob/master/AUTHORS">mruby developers</a></h2>
Expand Down

0 comments on commit 03e8262

Please sign in to comment.