Skip to content

Commit 10da58b

Browse files
committed
Rename config file to hugo.toml
1 parent 069b103 commit 10da58b

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-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

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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+
10+
ignoreErrors = ['error-missing-instagram-accesstoken']
11+
12+
[params]
13+
mode="auto"
14+
useCDN=false
15+
subtitle = "Minimal and Clean [blog theme for Hugo](https://github.com/athul/archie)"
16+
17+
[[params.social]]
18+
name = "GitHub"
19+
icon = "github"
20+
url = "https://github.com/athul/archie"
21+
22+
[[params.social]]
23+
name = "Twitter"
24+
icon = "twitter"
25+
url = "https://twitter.com/athulcajay/"
26+
27+
[[params.social]]
28+
name = "GitLab"
29+
icon = "gitlab"
30+
url = "https://gitlab.com/athul/"
31+
32+
[[menu.main]]
33+
name = "Home"
34+
url = "/"
35+
weight = 1
36+
37+
[[menu.main]]
38+
name = "All posts"
39+
url = "/posts"
40+
weight = 2
41+
42+
[[menu.main]]
43+
name = "About"
44+
url = "/about"
45+
weight = 3
46+
47+
[[menu.main]]
48+
name = "Tags"
49+
url = "/tags"
50+
weight = 4

0 commit comments

Comments
 (0)