28 lines
471 B
TOML
28 lines
471 B
TOML
|
title = "minimally.online"
|
||
|
|
||
|
[[tasks]]
|
||
|
input = [".png", ".jpg", ".gif", ".mp4", ".webm", ".mp3", ".txt"]
|
||
|
static_dir = "public"
|
||
|
output_dir = "build/html"
|
||
|
|
||
|
[[tasks]]
|
||
|
input = [".gmi"]
|
||
|
template = ".gmi"
|
||
|
output = ".gmi"
|
||
|
output_dir = "build/gmi"
|
||
|
|
||
|
[[tasks]]
|
||
|
input = [".gmi"]
|
||
|
template = ".gmi"
|
||
|
output = ".html"
|
||
|
postprocess = "gmi-web --config web.json"
|
||
|
output_dir = "build/html"
|
||
|
|
||
|
[[tasks.feeds]]
|
||
|
input_dir = "log"
|
||
|
title = "TDC log"
|
||
|
template = "atom.xml"
|
||
|
output = "log/atom.xml"
|
||
|
|
||
|
|