18 lines
407 B
Plaintext
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>
|