Skip to content

Commit 2ed5acb

Browse files
committed
feat : 카테고리,태그, 검색 페이지 추가
1 parent f0e69d7 commit 2ed5acb

4 files changed

Lines changed: 30 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
public/
22
.DS_Store
3+
.idea

config.toml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
baseURL = "https://kangsemin.github.io/"
2-
title = "강세민 기술블로그"
2+
title = "브레인스토밍"
33
defaultContentLanguage = "ko"
44
languageCode = "ko-kr"
55
theme = "PaperMod"
@@ -18,13 +18,16 @@ theme = "PaperMod"
1818
ShowRelativeTime = false
1919
DateFormat = "2006-01-02 15:04"
2020

21+
ShowSearch = true
2122
ShowReadingTime = true
2223
ShowShareButtons = true
2324
ShowPostNavLinks = true
2425
ShowBreadCrumbs = true
2526
ShowCodeCopyButtons = true
2627
comments = false
27-
defaultTheme = "auto"
28+
29+
disableThemeToggle = false
30+
defaultTheme = "dark"
2831

2932
socialIcons = [
3033
{ name = "github", url = "https://github.com/KangSemin" },
@@ -55,6 +58,22 @@ theme = "PaperMod"
5558
url = "/about"
5659
weight = 2
5760

61+
[[menu.main]]
62+
name = "Categories"
63+
url = "/categories"
64+
weight = 3
65+
66+
[[menu.main]]
67+
name = "Tags"
68+
url = "/tags"
69+
weight = 4
70+
71+
[[menu.main]]
72+
name = "Search"
73+
url = "/search"
74+
weight = 5
75+
76+
5877
[outputs]
5978
home = ["HTML", "RSS", "JSON"]
6079

content/posts/for-test.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
+++
22
date = '2025-06-12T16:42:35+09:00'
33
title = 'For Test'
4+
tags = ["tag1", "tag2"]
5+
categories = ["category1", "category2"]
46
+++
7+
8+
[구글](https://google.com)

content/search/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: "Search"
3+
layout: "search"
4+
---

0 commit comments

Comments
 (0)