satelito

Static [Web] Site (or Page) Generator (SSG) made with Lua script.
git clone git://soucy.cc/git/satelito.git
Log | Files | Refs | README

commit 55b0a537e0b66240dc60a4f4fb144078e9eeb438
parent b9356b4d5ee6eec69ea8effe8e0fc9b400e4633c
Author: Hugo Soucy <hugo@soucy.cc>
Date:   Tue,  2 Feb 2021 16:51:11 -0500

Add some missing values

Diffstat:
Msample/config.lua | 46+++++++++++++++++++++++++++-------------------
1 file changed, 27 insertions(+), 19 deletions(-)

diff --git a/sample/config.lua b/sample/config.lua @@ -5,25 +5,33 @@ ]] return { - domainname = "luvgoude.tld", - url = "https://luvgoude.tld", - language = "en", + domainname = "luvgoude.tld", + url = "https://luvgoude.tld", + language = "en", - -- Main paths - paths = { - content = 'content/', -- where are the source files - css = 'public_html/css/', - images = 'public_html/images/', - public_html = 'public_html/', - templates = 'templates/', - }, + metas = { + generator = "Satelito", + }, - -- Accepted mime types of the non-textual content - mimetypes = { - 'image/svg+xml', - 'image/gif', - 'image/jpeg', - 'image/png', - 'application/pdf', - }, + author = { + name = "Lua Luvgoude" + }, + + -- Main paths + paths = { + content = 'content/', -- where are the source files + css = 'public_html/css/', + images = 'public_html/images/', + public_html = 'public_html/', + templates = 'templates/', + }, + + -- Accepted mime types of the non-textual content + mimetypes = { + 'image/svg+xml', + 'image/gif', + 'image/jpeg', + 'image/png', + 'application/pdf', + }, }