Peradventure/views/layout.etlua

14 lines
258 B
Plaintext
Raw Normal View History

2024-03-17 16:03:28 -05:00
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title><%= page_title or "My Page" %></title>
2024-03-18 19:06:37 -05:00
<link rel="stylesheet" href="/static/css/pico/pico.min.css" />
2024-03-17 16:03:28 -05:00
</head>
<body>
<h1>Peradventure</h1>
<% content_for("inner") %>
</body>
</html>