Skip to content

Commit c983c07

Browse files
committed
Quartz sync: May 18, 2025, 6:54 PM
1 parent dfc5dd9 commit c983c07

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

content/About.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ comments: "false"
1717

1818
### Log
1919
- [Blog](https://yoma.kr)
20+
- [Github](https://github.com/codeyoma)
2021
- [PS](https://github.com/AI-Got-Rhythm/ps/tree/main/baekjoon)
2122
- [École 42](https://github.com/ecole42-yoma)
2223
- [Sweep Keyboard](https://github.com/codeyoma/sweep-nice-nano)

content/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ comments: "false"
1010
![[Lqp2z3I.gif]]
1111

1212
# MOC
13+
- [[about|About]]
1314
- [[- Computer Science]]
1415
- [[- Algorithms]]
1516
- [[- Frontend]]

quartz.layout.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@ export const sharedPageComponents: SharedLayout = {
2020
],
2121
footer: Component.Footer({
2222
links: {
23+
Home: "/",
24+
About: "/About",
2325
"Blog source": "https://github.com/codeyoma/codeyoma.github.io",
24-
GitHub: "https://github.com/codeyoma",
25-
LinkedIn: "https://www.linkedin.com/in/codeyoma",
26+
// GitHub: "https://github.com/codeyoma",
27+
// LinkedIn: "https://www.linkedin.com/in/codeyoma",
2628
},
2729
}),
2830
}

quartz/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default ((opts?: Options) => {
1616
<ul>
1717
{Object.entries(links).map(([text, link]) => (
1818
<li>
19-
<a href={link} target="_blank">{text}</a>
19+
<a href={link} >{text}</a>
2020
</li>
2121
))}
2222
</ul>

0 commit comments

Comments
 (0)