Welcome to mirror list, hosted at ThFree Co, Russian Federation.

config.toml « exampleSite - github.com/iCyris/hugo-theme-yuki.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6eb6d2e68b972f2d0fd7ac49a4f2a472040ff41e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
baseurl = "https://example.com/"
languageCode = "en-us"
title = "Hugo Theme Yuki"
theme = "hugo-theme-yuki"
author = "Cyris"

# Copyright notice. This will display on the footer.
copyright = ""
 
# Theme config
[params]
  paginate = 10
  
  # The information will display on the post pages.
  author = "Author"
  description = "Short description"
  authorwebsite = "https://example.com/"
  
  # The path to your images
  favicon = "images/logo.png"
  logo = "images/logo.png"
  avatar = ""
  displayImg = "images/display.png"
  
  # This will display on the index page
  snsTitle = "Social"
  
  # Google Analytics API key.
  ga_api_key = "Your Google Analytics tracking id"
  
# Navbar config
[[menu.nav]]
    name = "HOME"
    url = "/"
    weight = 1

[[menu.nav]]
    name = "BLOG"
    url = "/posts"
    weight = 2

[[menu.nav]]
    name = "ABOUT"
    url = "/pages/about"
    weight = 3
    
[[menu.nav]]
    name = "TAGS"
    url = "/tags/"
    weight = 4

# Social accounts config (This will display on the index page)
[[menu.social]]
    name = "Example-1"
    url = "/"
    weight = 1
    
[[menu.social]]
    name = "Example-2"
    url = "/"
    weight = 2

[[menu.social]]
    name = "Example-3"
    url = "/"
    weight = 3