porom/views/base.etlua
2025-05-20 13:12:50 +03:00

16 lines
298 B
Plaintext

<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<% if page_title then %>
<title>Porom - <%= page_title %></title>
<% else %>
<title>Porom</title>
<% end %>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<% content_for("inner") %>
</body>
</html>