Peradventure/views/layout.etlua

14 lines
304 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>
2024-03-19 11:45:08 -05:00
<h1 style="text-align: center; margin-top: 3rem;">Peradventure</h1>
2024-03-17 16:03:28 -05:00
<% content_for("inner") %>
</body>
</html>