This commit is contained in:
2025-12-07 09:24:48 -05:00
parent f5d928ebb9
commit 1de4ae1a24
11 changed files with 215 additions and 192 deletions

View File

@@ -0,0 +1,5 @@
[app]
name = "archive"
version = "0.0.1"
authors = ["vx-clutch"]

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View File

@@ -0,0 +1,8 @@
local fes = require("fes")
local site = fes.fes()
site.title = "archive"
site:h1("Hello, World!")
return site

View File

@@ -1,5 +1 @@
[app]
name = "error"
version = "0.0.1"
authors = ["vx-clutch"]
dhasjkdhaskjdhaskhdajkshjk

5
examples/static/Fes.toml Normal file
View File

@@ -0,0 +1,5 @@
[app]
name = "static"
version = "0.0.1"
authors = ["vx-clutch"]

View File

@@ -0,0 +1 @@
this is some neat data

View File

@@ -0,0 +1,8 @@
local fes = require("fes")
local site = fes.fes()
site.title = "static"
site:h1("Hello, World!")
return site