-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
35 lines (30 loc) · 911 Bytes
/
Copy pathabout.html
File metadata and controls
35 lines (30 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
layout: default
title: "About"
description: "About DoYoon Kim — Backend developer focused on Spring Boot, JVM internals, and distributed systems."
multilingual: true
nav-order: 4
---
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<h1 class="page-heading">About</h1>
{% include multilingual-sel.html %}
<!-- Korean Version -->
<div class="kr post-container">
{% capture about_kr %}{% include about/kr.md %}{% endcapture %}
{{ about_kr | markdownify }}
</div>
<!-- English Version -->
<div class="en post-container">
{% capture about_en %}{% include about/en.md %}{% endcapture %}
{{ about_en | markdownify }}
</div>
<!-- Japanese Version -->
<div class="ja post-container">
{% capture about_ja %}{% include about/ja.md %}{% endcapture %}
{{ about_ja | markdownify }}
</div>
</div>
</div>
</div>