Skip to content

Commit df1dd8f

Browse files
feat: 테마를 수정하여 환경변수를 변경하다
- 테마에서 변경된 환경변수를 수정함.
1 parent 44a76c5 commit df1dd8f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

pelicanconf.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
ARTICLE_SAVE_AS = "{date:%Y}/{date:%m}/{date:%d}/{slug}/index.html"
3535

3636
PAGE_PATHS = ["pages"]
37-
PAGE_URL = "{slug}/"
38-
PAGE_SAVE_AS = "{slug}/index.html"
37+
PAGE_URL = "{category}/{slug}/"
38+
PAGE_SAVE_AS = "{category}/{slug}/index.html"
3939

4040
# Pages template
4141
DIRECT_TEMPLATES = ["index", "tags", "categories", "archives", "pages"]
@@ -48,6 +48,8 @@
4848
("Categories", "/categories.html", "folder-open"),
4949
)
5050

51+
PAGE_MENU = (("Pages", "/pages.html", "newspaper"),)
52+
5153
SOCIAL = (
5254
("Github", "https://github.com/ujuc", "github"),
5355
("X", "https://x.com/ujuc", "x-twitter"),

0 commit comments

Comments
 (0)