This commit is contained in:
2025-12-11 16:16:05 +01:00
commit 8e26909af7
7 changed files with 113 additions and 0 deletions

46
.gitignore vendored Normal file
View File

@@ -0,0 +1,46 @@
# Hugo generated files
/public/
/resources/_gen/
/assets/jsconfig.json
hugo_stats.json
# Temporary files
.hugo_build.lock
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Editor directories and files
.vscode/
.idea/
*.swp
*.swo
*~
.project
.settings/
*.sublime-project
*.sublime-workspace
# Node modules (if using npm/yarn for themes or tools)
node_modules/
package-lock.json
yarn.lock
# Environment files
.env
.env.local
.env.*.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Docker (uncomment if you want to ignore these)
# docker-compose.override.yml

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule "themes/paper"]
path = themes/paper
url = https://github.com/nanxiaobei/hugo-paper

5
archetypes/default.md Normal file
View File

@@ -0,0 +1,5 @@
+++
date = '{{ .Date }}'
draft = true
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+++

20
content/posts/init.md Normal file
View File

@@ -0,0 +1,20 @@
+++
date = '2025-12-11T16:08:19+01:00'
draft = false
title = 'Init'
tags = ["init", "error", "404"]
+++
> "A journey of a thousand miles begins with a single step."
>
> — Lao Tzu (and now, me.)
## 🧭 My Initial Journey Starts Here
**Log Entry: Dec 11, 2025**
The digital dust has settled. The Docker container is running. Ive finally pushed that big, scary first commit.
This blog is where my **Life** collides with my keyboard. Expect a mix of **Travel** logs, thoughts on **CS** (Computer Science), and chronicling the general **Stupid** things I do along the way—all served up as static HTML, thanks to Hugo.
Let the writing begin!

10
docker-compose.yml Normal file
View File

@@ -0,0 +1,10 @@
services:
hugo:
image: hugomods/hugo:latest
command: hugo server --bind 0.0.0.0 --baseURL http://localhost --buildDrafts --buildFuture
volumes:
- .:/src
ports:
- "1313:1313"
working_dir: /src
restart: unless-stopped

28
hugo.toml Normal file
View File

@@ -0,0 +1,28 @@
baseURL = 'https://blog.dongho.kim/'
languageCode = 'en-us'
title = 'Dongho Kim'
theme = "paper"
[params]
# color style
color = 'linen' # linen, wheat, gray, light
# header social icons
github = 'https://git.ekstrah.com' # github.com/YOUR_GITHUB_ID
# instagram = 'YOUR_INSTAGRAM_ID' # instagram.com/YOUR_INSTAGRAM_ID
linkedin = 'www.linkedin.com/in/kim-dongho' # linkedin.com/in/YOUR_LINKEDIN_ID
# home page profile
avatar = 'GRAVATAR_EMAIL' # gravatar email or image url
name = 'Dongho Kim'
bio = 'Just another bio'
# misc
disablePostNavigation = true # disable post navigation
math = true # enable KaTeX math typesetting globally
localKatex = false # use local KaTeX js/css instead of CDN
graphCommentId = "YOUR_GRAPH_COMMENT_ID" # use graph comment (disqus alternative)
favicon = "favicon.ico" # customize the default favicon
appleTouchIcon = "apple-touch-icon.png" # customize the default Apple touch icon

1
themes/paper Submodule

Submodule themes/paper added at 8c75cdd9ce