-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
58 lines (48 loc) · 1.72 KB
/
config.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
baseURL = "https://cookbook.greenstuff.io/"
languageCode = "en-us"
title = "Our Recipies"
theme = "cookbook"
sectionPagesMenu = "main"
publishDir = "docs"
[params.front]
defaultAuthor = "Us" #Put in the default name of the author of the recipe
defaultImage = "/images/defaultImage.png" #default image that will be used for a recipe with no image
defaultImageHeight = 512 #default recipe image height
defaultImageWidth = 512 # default recipe image width
# If you have a logo image, add it here, else just text (as an image) will be added
# The default height/width are the recommended bulma size (112W X 28H), best to get your logo as close as possible to that
# The site will SCALE your image, but will not force a stretch, so you may need to stretch it in external tool before using.
[params.logo]
fileName = "/images/logo.webp"
#fileName = "images/logo-alt.png" #alt logo if you are interested
height = 50
width = 200
[params.favicon]
fileName = "/images/favicon.svg" #your favicon here if you wish to change it.
[menu]
[[menu.main]]
name = "Home"
pre = "fas fa-home" #icon, change if you would prefer a different icon
url = "/"
weight = 1
[[menu.main]]
name = "Categories" # change to w/e you want, tags or categories works best
pre = "fas fa-tags" #icon, change if you would prefer a different icon
url = "/tags/"
weight = 2
# Print output just creates a special route for a print view
[outputs]
home = ["HTML", "RSS", "JSON"]
page = ["HTML", "PRINT"]
# The settings for the print format
[outputFormats]
[outputFormats.printFormat]
name = "print"
mediaType = "text/html"
baseName = "print"
isPlainText = false
rel = "print"
isHTML = true
noUgly = true
permalinkable = true
path = "print"