mirror of
https://git.sr.ht/~adnano/kiln
synced 2024-10-30 09:23:09 +00:00
21 lines
396 B
TOML
21 lines
396 B
TOML
title = "Example Site"
|
|
urls = ["gemini://example.com", "https://example.com"]
|
|
|
|
[feeds]
|
|
"/blog/" = "Example Feed"
|
|
|
|
[tasks.gemini]
|
|
input_ext = ".gmi"
|
|
output_ext = ".gmi"
|
|
template_ext = ".gmi"
|
|
static_dir = "static"
|
|
output_dir = "public"
|
|
|
|
[tasks.geminitohtml]
|
|
input_ext = ".gmi"
|
|
output_ext = ".html"
|
|
template_ext = ".gmi"
|
|
postprocess = "geminitohtml"
|
|
static_dir = "static"
|
|
output_dir = "public.html"
|