-
Notifications
You must be signed in to change notification settings - Fork 10
/
foto.toml
80 lines (70 loc) · 1.68 KB
/
foto.toml
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
69
70
71
72
73
74
75
76
77
78
79
80
[site]
# The title of the site
title = "A new site"
# The name of the author
author = "Author Here"
# Site navigation links
# You can remove any navigation links or add more link by adding following lines
# [[site.nav]]
# icon = ""
# link = ""
# Navigation links are added in the order encountered.
[[site.nav]]
icon = "assets/icons/home.svg"
link = "https://example.com"
[[site.nav]]
icon = "assets/icons/instagram.svg"
link = "https://instagram.com/xxx"
[[site.nav]]
icon = "assets/icons/twitter.svg"
link = "https://twitter.com/xxx"
# Lightbox options
[lightbox]
# Show Navitation Arrows
show_arrows = true
# Show Zoom Icon
show_zoom = true
# Show Close Icon
show_close = true
# Show Image Count
show_counter = true
# Setttings for photo size
[image]
# Width for thumbnail images
thumbnailWidth = 640
# Width for enlarged images
originalWidth = 2048
# Compress Quality (0~100), higher is better.
compressQuality = 75
# Layout for grids
[layout]
minColumn = 1
maxColumn = 4
minWidth = 200
# Photo sections
# You can remove or add more sections by adding following lines
# [[section]]
# title = "section title"
# text = "section description"
# slug = "section-slug"
# folder = "folder of photos"
# ascending = false
# Photo sections are added in the order encountered.
[[section]]
title = "Section 1"
text = ""
slug = "section-1"
folder = "~/photos/section-1"
ascending = false
[[section]]
title = "Section 2"
text = ""
slug = "section-2"
folder = "~/photos/section-2"
ascending = false
# Other setings
[others]
# Folders that should be copied together when exporting sites
folders = [ "assets", "media" ]
# Show `Generated by foto` footer or not
show_foto_footer = true