mirror of
https://git.sr.ht/~adnano/kiln
synced 2024-10-30 09:23:09 +00:00
19 lines
330 B
TOML
19 lines
330 B
TOML
title = "Example Site"
|
|
urls = ["gemini://example.com", "https://example.com"]
|
|
|
|
[feeds]
|
|
"/blog/" = "Example Feed"
|
|
|
|
[tasks.gemini]
|
|
input = ".gmi"
|
|
output = ".gmi"
|
|
template = ".gmi"
|
|
destination = "public"
|
|
|
|
[tasks.geminiToHTML]
|
|
input = ".gmi"
|
|
output = ".html"
|
|
template = ".gmi"
|
|
postprocess = "geminiToHTML"
|
|
destination = "public.html"
|