Skip to content

Commit

Permalink
feat: 루트 페이지 변경
Browse files Browse the repository at this point in the history
문제 너무 만화
  • Loading branch information
w8385 committed Jan 26, 2024
1 parent 657f2ce commit 4425bea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ export class AppService {
}
resultHtml += `<td>`;
const user = result.result[handle];
resultHtml += `<h2><img src="${user.profileImage}" alt="프로필 사진"> ${handle}</h2>`;
resultHtml += `<img src="${user.profileImage}" alt="프로필 사진"> <h2>${handle}</h2>`;
resultHtml += `<h3>목표: ${user.goal}, 점수: ${user.point}</h3>`;
resultHtml += `<h3>${user.problems.length} 문제</h3>`;
resultHtml += `<details><summary>${user.problems.length} 문제</summary>`;
resultHtml += '<ul>';
for (const problem of user.problems) {
resultHtml += `<li><a href="https://www.acmicpc.net/problem/${problem.id}">${problem.title}</a> (${problem.level})</li>`;
}
resultHtml += '</ul>';
resultHtml += '</ul></details>';
resultHtml += `</td>`;
if (col === 4) {
resultHtml += `</tr>`;
Expand Down

0 comments on commit 4425bea

Please sign in to comment.