htmlua/examples/main.htmlua
Grace Yoder 55a1697e71
All checks were successful
ci/crow/tag/build Pipeline was successful
2026-07-17 20:08:24 -06:00

21 lines
322 B
Text
Executable file

<!DOCTYPE html>
<html lang="en">
<head>
<title>main</title>
</head>
<body>
<h1>hello</h1>
<include path="a.htmlua">
<export part=first>
<p><b>exported from main!</b></p>
</export>
<export part=second>
<p><b>exported from main but again!</b></p>
</export>
</include>
</body>
</html>