local fes = require("fes")
local std = fes.std
local u = fes.util
local screen = function (cnt)
return string.format([[
%s
%s
%s
]], fes.app.style.get(), std.center(std.h1("Fes in Fes")), cnt)
end
local act = function (action)
return std.a("/?action=" .. action, action)
end
local cnt = u.cc {
[[]],
std.h2("Actions:"),
std.ul {
act("Punch"),
act("Kick"),
act("Block"),
act("Flee"),
},
[[
]],
}
return screen(cnt)