This commit is contained in:
2025-11-19 20:29:00 -05:00
parent 7d70a4a884
commit 5cfaddf479
9 changed files with 583 additions and 0 deletions

9
test/Fes.toml Normal file
View File

@@ -0,0 +1,9 @@
[site]
name = "test"
version = "0.0.1"
authors = ["vx-clutch"]
[fes]
version = "1.0.0"
CUSTOM_CSS =

8
test/www/index.lua Normal file
View File

@@ -0,0 +1,8 @@
local fes = require("fes")
local site = fes.site_builder()
site:h1("Hello, Sam!")
site:h2(fes.std.fes_version())
site:h2(fes.std.site_version())
return site