-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
85 lines (72 loc) · 1.6 KB
/
_config.yml
File metadata and controls
85 lines (72 loc) · 1.6 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Site settings
title: "실전코딩 기술 블로그"
description: "실무에서 배운 개발 노하우와 기술적 인사이트를 공유합니다"
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://realcoding.blog" # the base hostname & protocol for your site
author: "실전코딩"
email: "info@realcoding.co.kr"
# 다국어 설정
languages: ["ko", "en", "ja"]
default_lang: "ko"
# Google Analytics
google_analytics: G-MEFBMHM6FK
# Comments system
comments:
provider: utterances
utterances:
repo: realcoding2003/realcoding2003.github.io
issue_term: pathname
theme: github-light
# Hero Images (교체 시 이 경로만 변경)
hero_image: "/assets/images/hero-code.jpg"
about_hero_image: "/assets/images/hero-about.jpg"
# Build settings
markdown: kramdown
highlighter: rouge
theme: minima
# GitHub Pages 호환 플러그인 (plugins 키워드 사용)
plugins:
- jekyll-feed
- jekyll-sitemap
- jekyll-seo-tag
- jekyll-redirect-from
# Include in processing
include:
- ads.txt
# Exclude from processing
exclude:
- Gemfile
- Gemfile.lock
- node_modules
- vendor/bundle/
- vendor/cache/
- vendor/gems/
- vendor/ruby/
- README.md
- CLAUDE.md
- .git/
- .github/
- _plugins/
- scripts/
- dropbox/
# Collections
collections:
posts:
output: true
permalink: /:year/:month/:day/:title/
# Defaults
defaults:
- scope:
path: ""
type: "posts"
values:
layout: "post"
author: "실전코딩"
- scope:
path: ""
values:
layout: "default"
# Syntax highlighting
rouge:
default_lang: python
css_class: 'highlight'