Skip to content

Commit

Permalink
update judge profile
Browse files Browse the repository at this point in the history
  • Loading branch information
justiceHui committed Aug 17, 2024
1 parent a24cba2 commit 7f4bc66
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions _includes/judge_profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -201,11 +201,23 @@
if(handles['atcoder'] !== 'None'){
inner += `<li>atcoder: <a id="atcoder" target="_blank" style="text-decoration:none;font-weight:bold;">loading</a></li>`;
}

let introduce_link = '{{ include.introduce | default: "None" }}';
if(introduce_link !== 'None'){
inner += `<li>Introduce: <a id="intro" href=${introduce_link} target="_blank">Link</a></li>`;
}

let icpc_id = '{{ include.icpcid | default: "None" }}';
if(icpc_id !== 'None'){
inner += `<li>ICPC ID: <a id="intro" href=https://icpc.global/ICPCID/${icpc_id} target="_blank">Link</a></li>`;
}

let cphof = '{{ include.icpcid | default: "None" }}';
if(cphof !== 'None'){
inner += `<li>ICPC ID: <a id="intro" href=https://cphof.org/profile/${cphof} target="_blank">Link</a></li>`;
}


let ul = document.getElementById('profile-list');
ul.innerHTML = inner;

Expand Down
2 changes: 1 addition & 1 deletion about/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ title: "소개"
* (18.03-21.02) 선린인터넷고등학교 소프트웨어과 졸업

### 온라인 저지 프로필
{% include judge_profile.html boj_id="jhnah917" codeforces_id="Justice_Hui" atcoder_id="JusticeHui" %}
{% include judge_profile.html boj_id="jhnah917" codeforces_id="Justice_Hui" atcoder_id="JusticeHui" icpc_id="E0RJ7B35QJIP" cphof="codeforces:justice_hui" %}

### 대회 참가/수상
* **2024 ICPC World Finals 진출**
Expand Down

0 comments on commit 7f4bc66

Please sign in to comment.