Skip to content

Commit 4ee5de3

Browse files
committed
Rename config file to hugo.toml
1 parent 069b103 commit 4ee5de3

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

exampleSite/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.hugo_build.lock
2+
public/

exampleSite/config.toml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ copyright = "© Athul"
66
pygmentsstyle = "monokai"
77
pygmentscodefences = true
88
pygmentscodefencesguesssyntax = true
9+
910
[params]
1011
mode="auto"
1112
useCDN=false

exampleSite/hugo.toml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
baseURL = "https://example.com"
2+
languageCode = "en-us"
3+
title = "Archie"
4+
theme="archie"
5+
copyright = "© Athul"
6+
pygmentsstyle = "monokai"
7+
pygmentscodefences = true
8+
pygmentscodefencesguesssyntax = true
9+
[params]
10+
mode="auto"
11+
useCDN=false
12+
subtitle = "Minimal and Clean [blog theme for Hugo](https://github.com/athul/archie)"
13+
14+
[[params.social]]
15+
name = "GitHub"
16+
icon = "github"
17+
url = "https://github.com/athul/archie"
18+
19+
[[params.social]]
20+
name = "Twitter"
21+
icon = "twitter"
22+
url = "https://twitter.com/athulcajay/"
23+
24+
[[params.social]]
25+
name = "GitLab"
26+
icon = "gitlab"
27+
url = "https://gitlab.com/athul/"
28+
29+
[[menu.main]]
30+
name = "Home"
31+
url = "/"
32+
weight = 1
33+
34+
[[menu.main]]
35+
name = "All posts"
36+
url = "/posts"
37+
weight = 2
38+
39+
[[menu.main]]
40+
name = "About"
41+
url = "/about"
42+
weight = 3
43+
44+
[[menu.main]]
45+
name = "Tags"
46+
url = "/tags"
47+
weight = 4

0 commit comments

Comments
 (0)