Skip to content

Commit ccc9693

Browse files
committed
함께 하셨던 분들 섹션 추가 및 기여하신 분들 URL 변경 등 (PyTorchKorea#34)
1 parent 4f49640 commit ccc9693

File tree

10 files changed

+77
-12
lines changed

10 files changed

+77
-12
lines changed

.github/workflows/deploy-www.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
node-version: 16.13.2
1919
- name: Install node dependencies
2020
run: |
21-
npm install
21+
npm install -g yarn
2222
yarn install
2323
- name: Set up Ruby 2.7
2424
uses: ruby/setup-ruby@v1

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ EOT
8585
# make serve
8686
```
8787
88-
* 참고: [기여해주신 분들](https://pytorch.kr/about/contributors) 페이지에서는 [jekyll/github-metadata](https://github.com/jekyll/github-metadata/tree/main/lib/jekyll-github-metadata) 플러그인을 사용하고 있으며 빌드를 위해서 `JEKYLL_GITHUB_TOKEN`이 필요합니다. \
89-
[기여해주신 분들](https://pytorch.kr/about/contributors) 페이지를 빌드해야 하는 경우, [jekyll/github-metadata](https://github.com/jekyll/github-metadata/tree/main/lib/jekyll-github-metadata)의 [Authentication 문서](https://github.com/jekyll/github-metadata/blob/main/docs/authentication.md)를 참고해주세요.
88+
* 참고: [기여해주신 분들](https://pytorch.kr) 페이지에서는 [jekyll/github-metadata](https://github.com/jekyll/github-metadata/tree/main/lib/jekyll-github-metadata) 플러그인을 사용하고 있으며 빌드를 위해서 `JEKYLL_GITHUB_TOKEN`이 필요합니다. \
89+
[기여해주신 분들](https://pytorch.kr/contributors) 페이지를 빌드해야 하는 경우, [jekyll/github-metadata](https://github.com/jekyll/github-metadata/tree/main/lib/jekyll-github-metadata)의 [Authentication 문서](https://github.com/jekyll/github-metadata/blob/main/docs/authentication.md)를 참고해주세요.
9090
9191
## 배포하기
9292

_config.yml

+12
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ plugins:
1212
- jekyll-autoprefixer
1313
- jekyll-feed
1414
- jekyll-github-metadata
15+
- jekyll-sitemap
1516
sass:
1617
load_paths:
1718
- _sass
@@ -27,10 +28,19 @@ exclude: [
2728
yarn.lock,
2829
yarn-error.log,
2930
package.json,
31+
package-lock.json,
3032
Makefile,
3133
scripts,
3234
docs,
3335
_hub/docs/template.md,
36+
install.sh,
37+
install_basics.sh,
38+
install_nightlies.sh,
39+
preview_hub.sh,
40+
run_pytorch.sh,
41+
sanity_check.py,
42+
setup_ci.sh,
43+
upgrade_torchvision.sh,
3444
]
3545
include: [
3646
.nojekyll,
@@ -63,6 +73,8 @@ highlighter: rouge
6373
collections:
6474
about:
6575
output: false
76+
contributors:
77+
output: true
6678
get_started:
6779
output: true
6880
hub:

_includes/footer.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h2>커뮤니티</h2>
3333
<ul>
3434
<li class="list-title"><a href="{{ site.baseurl }}">파이토치 한국 사용자 모임</a></li>
3535
<li><a href="{{ site.baseurl }}/about">사용자 모임 소개</a></li>
36-
<li><a href="{{ site.baseurl }}/about/contributors">기여해주신 분들</a></li>
36+
<li><a href="{{ site.baseurl }}/contributors">기여해주신 분들</a></li>
3737
<li><a href="{{ site.baseurl }}/resources">리소스</a></li>
3838
<li><a href="{{ site.baseurl }}/coc">행동 강령</a></li>
3939
</ul>

_maintainers/hrxorxm.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
github: hrxorxm
33
name: 이하람
4-
title: Maintainer
5-
team: tutorials-kr
4+
title: Inactive Maintainer
5+
team: Alumni
66
link_linkedin:
77
link_twitter:
88
link_facebook:

_maintainers/hyoyoung.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
github: hyoyoung
33
name: 장효영
44
title: Maintainer
5-
team: CoC, tutorials-kr, discuss
5+
team: CoC, tutorials-kr
66
link_linkedin:
77
link_twitter:
88
link_facebook: https://www.facebook.com/ihyoyoung

about.html

+47-3
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,14 @@ <h3>{{ about.title }}</h3>
6666
<!-- maintainers -->
6767
<div class="row maintainers-row">
6868
<div class="maintainer-content">
69-
<h3 class="features">운영진 소개</h3>
70-
<p class="features">파이토치 한국 사용자 모임을 함께 만들어가는 사람들을 소개합니다.</p>
69+
<a name="maintainers"></a>
70+
<h3 class="features">운영진 소개 (Maintainers)</h3>
71+
<p class="features">파이토치 한국 사용자 모임을 함께 만들어가고 계신 분들을 소개합니다.</p>
7172
<div class="container">
7273
<div class="row">
7374
{% for maintainer in maintainers %}
7475
{% if maintainer.team == "Alumni" %}
75-
{% assign active_class = "inactive" %}
76+
{% continue %}
7677
{% else %}
7778
{% assign active_class = "active" %}
7879
{% endif %}
@@ -104,6 +105,49 @@ <h3>{{ maintainer.name }}</h3>
104105
</div>
105106
</div>
106107
</div>
108+
<!-- End of maintainers -->
109+
<!-- inactive maintainers -->
110+
<div class="row maintainers-row">
111+
<div class="maintainer-content">
112+
<h3 class="features">함께 하셨던 분들 (Alumni)</h3>
113+
<p class="features">파이토치 한국 사용자 모임과 함께 하셨던 분들을 소개합니다.</p>
114+
<div class="container">
115+
<div class="row">
116+
{% for maintainer in maintainers %}
117+
{% if maintainer.team == "Alumni" %}
118+
{% assign active_class = "inactive" %}
119+
{% else %}
120+
{% continue %}
121+
{% endif %}
122+
<div class="col-xl-2 col-lg-3 col-md-3 col-sm-4 col-6">
123+
<div class="maintainer">
124+
<a class="{{ active_class }}" href="#"><img src="{{ site.base_url }}/assets/images/maintainers/{{ maintainer.github }}.png" alt="{{ maintainer.github }}"></a>
125+
<div class="member-info">
126+
<h3>{{ maintainer.name }}</h3>
127+
<p class="title">{{ maintainer.title }}</p>
128+
<p class="team">@{{ maintainer.team | split: ", " | join: ", @"}}</p>
129+
<a href="https://github.com/{{ maintainer.github }}"><i class="fa fa-2x fa-github"></i></a>
130+
{% if maintainer.link_twitter %}
131+
<a href="{{ maintainer.link_twitter }}"><i class="fa fa-2x fa-twitter"></i></a>
132+
{% endif %}
133+
{% if maintainer.link_instagram %}
134+
<a href="{{ maintainer.link_instagram }}"><i class="fa fa-2x fa-instagram"></i></a>
135+
{% endif %}
136+
{% if maintainer.link_facebook %}
137+
<a href="{{ maintainer.link_facebook }}"><i class="fa fa-2x fa-facebook-square"></i></a>
138+
{% endif %}
139+
{% if maintainer.link_linkedin %}
140+
<a href="{{ maintainer.link_linkedin }}"><i class="fa fa-2x fa-linkedin"></i></a>
141+
{% endif %}
142+
</div>
143+
</div>
144+
</div>
145+
{% endfor %}
146+
</div>
147+
</div>
148+
</div>
149+
</div>
150+
<!-- End of inactive maintainers -->
107151
</div>
108152
</div>
109153
</div>

contributors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: default
33
title: 기여자 소개
4-
permalink: about/contributors
4+
permalink: contributors/
55
background-class: coc-background
66
body-class: features
77
---

maintainers.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
permalink: maintainers/
3+
---
4+
5+
<html>
6+
<head>
7+
<meta http-equiv="refresh" content="0; url=/about/#maintainers">
8+
</head>
9+
</html>

0 commit comments

Comments
 (0)