This repository has been archived on 2025-08-01. You can view files and clone it, but cannot push or open issues or pull requests.
Files
porom/views/base.etlua
2025-05-23 16:08:26 +03:00

18 lines
407 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 %>
<% math.randomseed(os.time()) %>
<link rel="stylesheet" href="<%= "/static/style.css?v=" .. math.random(1, 100) %>">
</head>
<body>
<% render("views.common.topnav") -%>
<% content_for("inner") %>
</body>
</html>