Skip to content

Commit 4bb14d0

Browse files
committed
Minor config setup
1 parent 87164da commit 4bb14d0

2 files changed

Lines changed: 62 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ hugo.darwin
44
.DS_Store
55
node_modules/
66
.hugo_build.lock
7+
.vscode/

hugo.toml

Lines changed: 61 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,62 @@
1-
baseURL = 'https://example.org/'
1+
baseURL = 'https://specoding.com/'
22
languageCode = 'en-us'
3-
title = 'My New Hugo Site'
3+
title = 'Spec Coding'
4+
theme = 'hugo-clarity'
5+
6+
# SEO and Meta
7+
description = 'Cutting-edge software development through Spec-Driven Design and Agentic AI'
8+
author = 'Your Name'
9+
enableRobotsTXT = true
10+
canonifyURLs = true
11+
12+
# Content and Navigation
13+
# paginate = 10
14+
# paginatePath = 'page'
15+
16+
[pagination]
17+
pagerSize = 10
18+
path = 'page'
19+
20+
enableEmoji = true
21+
enableGitInfo = true
22+
23+
# Code Highlighting (crucial for your technical content)
24+
[markup]
25+
[markup.goldmark]
26+
[markup.goldmark.renderer]
27+
unsafe = true
28+
[markup.highlight]
29+
codeFences = true
30+
guessSyntax = true
31+
lineNos = true
32+
style = 'github'
33+
34+
# Menu Configuration
35+
[menu]
36+
[[menu.main]]
37+
identifier = 'blog'
38+
name = 'Blog'
39+
url = '/blog/'
40+
weight = 10
41+
[[menu.main]]
42+
identifier = 'guides'
43+
name = 'Guides'
44+
url = '/guides/'
45+
weight = 20
46+
[[menu.main]]
47+
identifier = 'Resources'
48+
name = 'Resources'
49+
url = '/resources/'
50+
weight = 30
51+
[[menu.main]]
52+
identifier = 'about'
53+
name = 'About'
54+
url = '/about/'
55+
weight = 50
56+
57+
# Social and Analytics
58+
[params]
59+
author = 'Your Name'
60+
github = 'your-github'
61+
twitter = 'your-twitter'
62+
linkedin = 'your-linkedin'

0 commit comments

Comments
 (0)