-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
139 lines (123 loc) · 4.16 KB
/
Copy path_config.yml
File metadata and controls
139 lines (123 loc) · 4.16 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
plugins:
- jekyll-paginate
- jekyll-sitemap
- jekyll-feed
feed:
excerpt_only: true
posts_limit: 20
# NOTE: the Google/Naver site-verification HTML files are intentionally NOT
# excluded — they must be served at the site root for Search Console / Naver
# to verify ownership and crawl sitemap.xml + feed.xml. Excluding them silently
# breaks search indexing.
exclude:
- /vendor/
- README.md
- README.ko.md
- docs/
- Gemfile
- Gemfile.lock
- LICENSE
# Diagram sources and their render script are authoring inputs, not site
# assets. Without these they get copied into _site and served publicly.
- "**/*.excalidraw"
- assets/images/render-diagrams.sh
- script/
title: Bits, Bytes and Neural Networks
subtitle: A Data Scientist's Digital Playground
email: aldente0630@gmail.com
name: Jonas Kim
# jekyll-feed reads `author` (not `name`) for the Atom <author> element. Without
# it every entry ships an empty <author><name></name></author>.
author: Jonas Kim
# `>-` (folded, chomped) not `|` — a literal block keeps the trailing newline,
# which then leaks into meta content="" attributes and the feed <subtitle>.
description: >-
A tech blog focusing on AI/ML paper reviews and latest research trends
baseurl: ''
url: https://bits-bytes-nn.github.io
# Post URLs embed :year/:month/:day, and front-matter dates carry no offset, so
# without this Jekyll resolves them in the *build machine's* timezone. CI runs in
# UTC while local machines here run in KST (+9), which pushed 19 afternoon-dated
# posts onto the next day — meaning a deploy from a local machine would have
# silently moved 19 live URLs and 404'd the originals. Pinned to UTC because that
# is what every deploy so far used, so the published URLs do not move.
timezone: UTC
cover: /assets/my_header_image.jpg
logo: /assets/my_logo.png
markdown: kramdown
kramdown:
input: GFM
parse_block_html: true
parse_span_html: true
smart_quotes: ["apos", "apos", "quot", "quot"]
syntax_highlighter: rouge
math_engine: mathjax
math_engine_opts:
preview: true
preview_as_code: false
paginate: 5
paginate_path: /page/:num/
# NOTE: no `simple_jekyll_search:` block. simple-jekyll-search is a client-side
# script that reads search.json and knows nothing about Jekyll config, so the
# `exclude:` list that used to sit here excluded nothing. search.json is built
# from `site.posts` only, which already leaves out the pages it named.
ga_tracking_id: G-MRH9Z5ETSQ
social:
# Contact: GitHub - LinkedIn - Threads (in order)
- name: GitHub
icon: github
username: bits-bytes-nn
url: https://github.com/bits-bytes-nn
desc: Fork me on GitHub
share: false
# Share only (no url = not shown in Contact)
- name: Facebook
icon: facebook
share: true
share_url: https://www.facebook.com/sharer.php
share_params:
- key: t
value: TITLE
- key: u
value: URL
- name: LinkedIn
icon: linkedin
username: Jonas Kim
url: https://www.linkedin.com/in/aldente0630
desc: Connect with me on LinkedIn
share: true
share_url: https://www.linkedin.com/shareArticle
share_params:
- key: mini
value: true
- key: url
value: URL
# Share only (no url = not shown in Contact)
- name: X
icon: x-twitter
share: true
share_url: https://twitter.com/share
share_params:
- key: text
value: TITLE
- key: url
value: URL
- name: Threads
icon: threads
username: aldente0630
url: https://www.threads.com/@aldente0630
desc: Follow me on Threads
share: false
protocols:
# Default social card image, used only when a page sets no `cover`. The old
# value was my_logo.png declared as 612x605 — the file is actually 192x192,
# below the 200x200 floor Facebook/LinkedIn need to render a card at all.
# my_header_image.jpg is the site cover and its declared size is real.
fb_image: /assets/my_header_image.jpg
fb_image_width: 1920
fb_image_height: 600
fb_image_type: image/jpeg
twitter_image: /assets/my_header_image.jpg
os_repo: https://github.com/bits-bytes-nn/bits-bytes-nn.github.io
os_rcs_type: git
os_src: git@github.com:bits-bytes-nn/bits-bytes-nn.github.io.git