added initial recipes
This commit is contained in:
56
config.toml
Normal file
56
config.toml
Normal file
@@ -0,0 +1,56 @@
|
||||
baseURL = "https://recipes.derajnet.duckdns.org"
|
||||
languageCode = "en-us"
|
||||
title = "Swets Cookbook"
|
||||
theme = "cookbook"
|
||||
sectionPagesMenu = "main"
|
||||
|
||||
[params.front]
|
||||
defaultAuthor = "Jared Swets" #Put in the default name of the author of the recipe
|
||||
defaultImage = "/images/defaultImage.jpg" #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"
|
Reference in New Issue
Block a user