Hash :
2c8ee3d1
Author :
Thomas de Grivel
Date :
2025-07-26T22:01:56
license
ERB-style template engine for Common Lisp.
Example template with Common Lisp code embedding :
<!doctype html>
<html>
<head>
<title><%= title %></title>
</head>
<body>
<h1><%= title %></h1>
<ul>
<%= (mapcar (lambda (item) %>
<li>
<%= item %>
</li>
<%= ) items-list) %>
</ul>
</body>
</html>