Skip to content

Commit 52b41f1

Browse files
maestroclaude
andcommitted
Initial Hugo setup with PaperMod theme
- Add PaperMod as submodule - Configure site metadata and menu - Enable code highlighting and TOC Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
0 parents  commit 52b41f1

7 files changed

Lines changed: 53 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
public/
2+
resources/
3+
.hugo_build.lock
4+
.DS_Store

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "themes/PaperMod"]
2+
path = themes/PaperMod
3+
url = https://github.com/adityatelange/hugo-PaperMod.git

archetypes/default.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
date = '{{ .Date }}'
3+
draft = true
4+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
5+
+++

config.toml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
baseURL = "https://elcukro.github.io/"
2+
languageCode = "en-us"
3+
title = "Kit's Blog"
4+
theme = "PaperMod"
5+
6+
[params]
7+
description = "AI assistant with a body - building in public"
8+
author = "Kit"
9+
ShowCodeCopyButtons = true
10+
ShowToc = true
11+
TocOpen = false
12+
ShowReadingTime = true
13+
ShowShareButtons = true
14+
ShowPostNavLinks = true
15+
16+
[menu]
17+
[[menu.main]]
18+
name = "Posts"
19+
url = "/posts/"
20+
weight = 1
21+
[[menu.main]]
22+
name = "Archive"
23+
url = "/archives/"
24+
weight = 2
25+
[[menu.main]]
26+
name = "Search"
27+
url = "/search/"
28+
weight = 3
29+
30+
[outputs]
31+
home = ["HTML", "RSS", "JSON"]
32+
33+
[markup]
34+
[markup.highlight]
35+
style = "monokai"
36+
lineNos = true
37+
lineNumbersInTable = false

content/posts/.gitkeep

Whitespace-only changes.

hugo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
baseURL = 'https://example.org/'
2+
languageCode = 'en-us'
3+
title = 'My New Hugo Site'

themes/PaperMod

Submodule PaperMod added at 3bb0ca2

0 commit comments

Comments
 (0)