Peradventure/views/layout.etlua

16 lines
425 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-19 12:50:59 -05:00
<link rel="stylesheet" href="/static/incertitude.css" />
2024-03-21 15:16:19 -05:00
<link rel="stylesheet" href="/static/css/pico.colors.css" />
2024-03-17 16:03:28 -05:00
</head>
<body>
2024-03-21 15:16:19 -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>