This is a sample web site for the Satelito SSG.
https://codeberg.org/hs0ucy/Satelito
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.2 KiB
58 lines
1.2 KiB
|
|
--[[ |
|
Satelito website configuration file. |
|
<https://soucy.cc/git/satelito/file/README.md.html> |
|
]] |
|
|
|
return { |
|
--[[ |
|
App Mandatory Values |
|
(If you edit them do it carefully) |
|
|
|
- siteurl |
|
- language |
|
- paths.* |
|
- mimetypes.* |
|
]] |
|
sitemapxml = true, |
|
siteurl = "https://grgmelies.tld", |
|
language = "en", |
|
|
|
-- Main paths |
|
-- Must be relative paths to the config.lua |
|
paths = { |
|
content = 'content/', -- where are the source files (markdown, lua) |
|
templates = 'templates/', -- where are the etlua templates |
|
public_html = 'public_html/', -- where you export your site |
|
-- You can add yours here |
|
}, |
|
|
|
-- Accepted mime types of the non-textual content |
|
mimetypes = { |
|
'image/svg+xml', |
|
'image/gif', |
|
'image/jpeg', |
|
'image/png', |
|
'application/pdf', |
|
-- You can add yours here |
|
}, |
|
|
|
--[[ |
|
Templates specific values |
|
]] |
|
metas = { |
|
generator = "Satelito", |
|
}, |
|
|
|
author = { |
|
name = "Georges Méliès", |
|
uri = "https://grgmelies.tld/#", |
|
relme = { |
|
"https://mastodon.sdf.org/@grgmelies", |
|
"https://pixelfed.social/grgmelies", |
|
"https://peertube.social/accounts/grgmelies", |
|
"https://codeberg.org/grgmelies", |
|
}, |
|
}, |
|
-- You can add yours here |
|
}
|
|
|